Skip to content

Commit

Permalink
Merge pull request #159 from wendorf/dockerfile-helm-diff
Browse files Browse the repository at this point in the history
Dockerfile installs helm-diff
  • Loading branch information
mumoshu authored Jun 1, 2018
2 parents 3044255 + 98d3897 commit afa4593
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN make static-linux

FROM alpine:3.7

RUN apk add --no-cache ca-certificates
RUN apk add --no-cache ca-certificates git bash

ARG HELM_VERSION=v2.9.1
ARG HELM_LOCATION="https://kubernetes-helm.storage.googleapis.com"
Expand All @@ -20,6 +20,9 @@ RUN wget ${HELM_LOCATION}/${HELM_FILENAME} && \
tar zxf ${HELM_FILENAME} && mv /linux-amd64/helm /usr/local/bin/ && \
rm ${HELM_FILENAME} && rm -r /linux-amd64

RUN mkdir -p "$(helm home)/plugins"
RUN helm plugin install https://github.com/databus23/helm-diff

COPY --from=builder /go/src/github.com/roboll/helmfile/dist/helmfile_linux_amd64 /usr/local/bin/helmfile

CMD ["/usr/local/bin/helmfile"]

0 comments on commit afa4593

Please sign in to comment.