Skip to content

Build and Push Docker Image #21

Build and Push Docker Image

Build and Push Docker Image #21

Workflow file for this run

name: Build and Push Docker Image
on:
schedule:
- cron: '0 0 * * 0' # Run weekly on Sunday at midnight
push:
branches: [ main ]
workflow_dispatch: # Allow manual triggers
env:
BASE_VERSION: 1.16.0 # Match this with kasmweb/core-ubuntu-jammy version
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: |
williamsct1/kasm-hashcat:latest
williamsct1/kasm-hashcat:${{ env.BASE_VERSION }}