diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 33b62c2..cdced93 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -60,3 +60,18 @@ jobs: file: ./containers/infra/Containerfile push: true tags: ghcr.io/${{ github.repository_owner }}/infra:latest + + kali-build: + runs-on: ubuntu-24.04 + needs: base-build + steps: + - *clone_repo + - *setup_buildx + - *login_registry + - name: Build and push kali container + uses: docker/build-push-action@v5 + with: + context: ./containers/kali + file: ./containers/kali/Containerfile + push: true + tags: ghcr.io/${{ github.repository_owner }}/kali:latest diff --git a/containers/kali/Containerfile b/containers/kali/Containerfile new file mode 100644 index 0000000..bfd5ce1 --- /dev/null +++ b/containers/kali/Containerfile @@ -0,0 +1 @@ +FROM docker.io/kalilinux/kali-rolling