container: add helm
This commit is contained in:
parent
ffa98fdbdd
commit
6a54765e1f
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Reference in New Issue