feat: add kali container
Some checks failed
Build container / base-build (push) Failing after 2m51s
Build container / go-build (push) Has been skipped
Build container / infra-build (push) Has been skipped
Build container / kali-build (push) Has been skipped

This commit is contained in:
Job
2025-10-13 11:27:56 +02:00
parent 105e63f05b
commit 0f95243db5
2 changed files with 16 additions and 0 deletions

View File

@@ -60,3 +60,18 @@ jobs:
file: ./containers/infra/Containerfile file: ./containers/infra/Containerfile
push: true push: true
tags: ghcr.io/${{ github.repository_owner }}/infra:latest 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

View File

@@ -0,0 +1 @@
FROM docker.io/kalilinux/kali-rolling