Files
devcontainer/containers/infra/Containerfile
Job79 e969a7f265
All checks were successful
Build containers / changes (push) Successful in 3s
Build containers / base-image (push) Successful in 1m2s
Build containers / dependent-images (go) (push) Successful in 46s
Build containers / dependent-images (infra) (push) Successful in 1m2s
test
2025-12-29 15:19:12 +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