From 4aa637343fb1cdb13d521b7fb171690bc8ac1f1a Mon Sep 17 00:00:00 2001 From: Ilya Trushchenko Date: Mon, 10 Sep 2018 15:38:57 -0700 Subject: [PATCH] update `helm` to 2.10.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 72bf818..c28831f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN apk --no-cache add ca-certificates git \ RUN curl -sLo /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl \ && chmod +x /usr/local/bin/kubectl -ENV HELM_VERSION v2.9.1 +ENV HELM_VERSION v2.10.0 RUN curl -sLo /tmp/helm.tar.gz https://storage.googleapis.com/kubernetes-helm/helm-${HELM_VERSION}-linux-amd64.tar.gz \ && tar -zxf /tmp/helm.tar.gz -C /tmp/ \ && cp /tmp/linux-amd64/helm /usr/local/bin/ \