From e3671a6ae8f3dfd1e09b891d1ed986e2a89768e4 Mon Sep 17 00:00:00 2001 From: Serhii Koropets Date: Thu, 3 Oct 2024 09:42:07 +0300 Subject: [PATCH] Add && for curl pipe in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 26f1ec72b..5f695c65c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,7 +56,7 @@ ARG HTTPS_PROXY ARG KUBECTL_VERSION="v1.31.1" #donwload & install kubectl -RUN curl -fsSL -o /usr/local/bin/kubectl https://dl.k8s.io/release/$KUBECTL_VERSION/bin/linux/amd64/kubectl +RUN curl -fsSL -o /usr/local/bin/kubectl https://dl.k8s.io/release/$KUBECTL_VERSION/bin/linux/amd64/kubectl &&\ chmod +x /usr/local/bin/kubectl # Copy scripts