Skip to content

Commit

Permalink
chore: update helm to 2.14.1 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
kipit authored and msiegenthaler committed Jun 11, 2019
1 parent 6a3b16e commit b6740c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ LABEL maintainer="Mario Siegenthaler <mario.siegenthaler@linkyard.ch>"

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

ENV VERSION=v2.14.0
ENV VERSION=v2.14.1
ENV FILENAME=helm-${VERSION}-linux-amd64.tar.gz
ENV SHA256SUM=b5f6a1e642971af1363cadbe1f7f37c029c11dd93813151b521c0dbeacfbdaa9
ENV SHA256SUM=804f745e6884435ef1343f4de8940f9db64f935cd9a55ad3d9153d064b7f5896

WORKDIR /

RUN apk add --update -t deps curl tar gzip
RUN curl -L http://storage.googleapis.com/kubernetes-helm/${FILENAME} > ${FILENAME} && \
RUN curl -L https://get.helm.sh/${FILENAME} > ${FILENAME} && \
echo "${SHA256SUM} ${FILENAME}" > helm_${VERSION}_SHA256SUMS && \
sha256sum -cs helm_${VERSION}_SHA256SUMS && \
tar zxv -C /tmp -f ${FILENAME} && \
Expand Down

0 comments on commit b6740c8

Please sign in to comment.