From 6757ae68756d4378732739cf4ebe603e89212ace 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..2861bc8 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 --setopt=tsflags=noscripts 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')" && \ 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