11 lines
233 B
Docker
11 lines
233 B
Docker
ARG TAG
|
|
FROM quay.io/fedora/fedora:43
|
|
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
|