name: Docker Image CI permissions: contents: read on: workflow_dispatch jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v7 - name: Build the Docker image run: docker build . --file Dockerfile --tag heritrix:$(date +%s) working-directory: docker