From 087d0f26bedeb9ac73c0a70ad013afe6e1e74e46 Mon Sep 17 00:00:00 2001 From: Chris Ellrich Date: Tue, 27 May 2025 21:22:03 +0200 Subject: [PATCH] fixed missing \ --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a96372c..b17e6ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN . /envfile && \ curl -sL https://get.helm.sh/helm-v${HELM_VERSION}-linux-${ARCH}.tar.gz | tar -xz && \ mv linux-${ARCH}/helm /usr/bin/helm && chmod +x /usr/bin/helm && rm -rf linux-${ARCH} && \ curl -sLO https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/${ARCH}/kubectl && \ - mv kubectl /usr/bin/kubectl && chmod +x /usr/bin/kubectl + mv kubectl /usr/bin/kubectl && chmod +x /usr/bin/kubectl \ curl -sLO https://github.com/getsops/sops/releases/download/v${SOPS_VERSION}/sops-v${SOPS_VERSION}.linux.${ARCH} && \ mv sops-v${SOPS_VERSION}.linux.${ARCH} /usr/bin/sops && chmod +x /usr/bin/sops