From 678b8bee6ec8ca46d68511f092950a251174ca6e Mon Sep 17 00:00:00 2001 From: Job79 Date: Sun, 28 Dec 2025 11:20:05 +0100 Subject: [PATCH] fix: /run issue in infra container --- containers/infra/Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/containers/infra/Containerfile b/containers/infra/Containerfile index 0aad236..810f10e 100644 --- a/containers/infra/Containerfile +++ b/containers/infra/Containerfile @@ -5,6 +5,7 @@ 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')" && \ dnf clean all && \ curl -sL https://talos.dev/install | sh && \ - curl -s https://fluxcd.io/install.sh | bash + curl -s https://fluxcd.io/install.sh | bash && \ + chmod 755 /run USER user