From 3bd9a282e4978c7c9a26051ccd08401f047dd02a Mon Sep 17 00:00:00 2001 From: Hanjo Meinhardt Date: Fri, 24 Aug 2018 15:24:32 +0200 Subject: [PATCH] add curly brackets --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fe6d758..dd3c5e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,5 +5,6 @@ RUN apk add -U --no-cache openssl # download and install kubectl ARG KUBECTL_VERSION=v9.0.10 -RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$KUBECTL_VERSION/bin/linux/amd64/kubectl" -o /usr/bin/kubectl \ + +RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$KUBECTL_VERSION/bin/linux/amd64/kubectl -o /usr/bin/kubectl \ && chmod +x /usr/bin/kubectl \