Files
devcontainer/containers/infra/Containerfile
Job79 9d015215f0
All checks were successful
Build containers / changes (push) Successful in 3s
Build containers / base-image (push) Successful in 59s
Build containers / dependent-images (go) (push) Successful in 53s
Build containers / dependent-images (infra) (push) Successful in 1m0s
test
2025-12-29 15:24:45 +01:00

11 lines
228 B
Docker

ARG TAG
FROM job79/fedora:${TAG}
USER root
RUN dnf -y install kubectl k9s openssl age curl which && \
dnf clean all && \
curl -sL https://talos.dev/install | sh && \
curl -s https://fluxcd.io/install.sh | bash
USER user