container: add helm

This commit is contained in:
rob boll 2016-11-22 21:40:24 -05:00
parent ffa98fdbdd
commit 6a54765e1f
1 changed files with 7 additions and 1 deletions

View File

@ -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"]