From 0f95243db5386a661c09782787ccef43c86bec20 Mon Sep 17 00:00:00 2001 From: Job79 Date: Mon, 13 Oct 2025 11:27:56 +0200 Subject: [PATCH] feat: add kali container --- .github/workflows/ci.yaml | 15 +++++++++++++++ containers/kali/Containerfile | 1 + 2 files changed, 16 insertions(+) create mode 100644 containers/kali/Containerfile 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