Skip to content

Commit

Permalink
Add && for curl pipe in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
koropets committed Oct 3, 2024
1 parent ef1301a commit e3671a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e3671a6

Please sign in to comment.