11 lines
228 B
Docker
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
|