From 8577c014efe10092accfe8a7bfe51a355047222a Mon Sep 17 00:00:00 2001 From: Hanjo Meinhardt Date: Fri, 24 Aug 2018 15:21:20 +0200 Subject: [PATCH] add quotation marks --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index db71d18..fe6d758 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,5 +5,5 @@ 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 \