From 9fb52c08d85c0ad8ae5b9713505128625003945a Mon Sep 17 00:00:00 2001 From: Job79 Date: Mon, 29 Dec 2025 11:48:35 +0100 Subject: [PATCH] test --- containers/infra/Containerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/containers/infra/Containerfile b/containers/infra/Containerfile index 810f10e..61db073 100644 --- a/containers/infra/Containerfile +++ b/containers/infra/Containerfile @@ -2,10 +2,9 @@ ARG TAG FROM job79/fedora:${TAG} USER root -RUN dnf -y install kubectl k9s openssl age "$(curl -s https://api.github.com/repos/getsops/sops/releases/latest | jq -r '.assets[] | select(.name | test("sops-.*.x86_64.rpm$")) | .browser_download_url')" && \ +RUN dnf -y install kubectl && \ dnf clean all && \ curl -sL https://talos.dev/install | sh && \ - curl -s https://fluxcd.io/install.sh | bash && \ - chmod 755 /run + curl -s https://fluxcd.io/install.sh | bash USER user