Skip to content

Commit

Permalink
Fix for missing '\' char in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
cicharka committed Jan 17, 2022
1 parent ffed88e commit 55e3f4f
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 @@ -25,7 +25,7 @@ RUN : INSTALL APT REQUIREMENTS \
&& curl -fsSLO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl \
&& chmod +x ./kubectl \
&& mv ./kubectl /usr/local/bin/kubectl \
&& kubectl version --client
&& kubectl version --client \
\
&& : INSTALL GEM REQUIREMENTS \
&& gem install \
Expand Down

0 comments on commit 55e3f4f

Please sign in to comment.