From fa17f375b7aab5bb01c9f9777b8c9fce71db34ac Mon Sep 17 00:00:00 2001 From: dmitriy-lukyanchikov Date: Thu, 19 Apr 2018 10:57:31 +0300 Subject: [PATCH] update helm version, add make to image --- .gitignore | 1 + Dockerfile | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1377554 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.swp diff --git a/Dockerfile b/Dockerfile index 3c612fe..7f72729 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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/ \