From 6a54765e1f73ca4b9b2448f6c59695e83b48fb9e Mon Sep 17 00:00:00 2001 From: rob boll Date: Tue, 22 Nov 2016 21:40:24 -0500 Subject: [PATCH] container: add helm --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 088185fe..2868c0bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,9 @@ FROM alpine:3.4 -COPY dist/helmfile_linux_amd64 /helmfile +RUN apk add --update curl && \ + curl -L https://kubernetes-helm.storage.googleapis.com/helm-v2.0.0-linux-amd64.tar.gz | \ + tar zxf - && mv /linux-amd64/helm /usr/local/bin/ && rm -r /linux-amd64 && apk del curl + +COPY dist/helmfile_linux_amd64 /usr/local/bin/helmfile + +CMD ["/usr/local/bin/helmfile"]