Skip to content

Commit

Permalink
Merge pull request #2 from AnchorFree/update-helm-version
Browse files Browse the repository at this point in the history
update helm version, add make to image
  • Loading branch information
dmitriy-lukyanchikov authored Apr 19, 2018
2 parents f9949a5 + fa17f37 commit 3820f4f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.swp
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ RUN apk --no-cache add ca-certificates git \
&& wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://raw.githubusercontent.com/sgerrand/alpine-pkg-git-crypt/master/sgerrand.rsa.pub \
&& wget https://github.com/sgerrand/alpine-pkg-git-crypt/releases/download/0.6.0-r0/git-crypt-0.6.0-r0.apk \
&& apk add git-crypt-0.6.0-r0.apk \
&& rm git-crypt-0.6.0-r0.apk
&& rm git-crypt-0.6.0-r0.apk \
&& apk add --update make

RUN curl -sLo /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl \
&& chmod +x /usr/local/bin/kubectl

ENV HELM_VERSION v2.7.2
ENV HELM_VERSION v2.8.2
RUN curl -sLo /tmp/helm.tar.gz https://storage.googleapis.com/kubernetes-helm/helm-${HELM_VERSION}-linux-amd64.tar.gz \
&& tar -zxf /tmp/helm.tar.gz -C /tmp/ \
&& cp /tmp/linux-amd64/helm /usr/local/bin/ \
Expand Down

0 comments on commit 3820f4f

Please sign in to comment.