Skip to content

Commit

Permalink
bump alpine base image, kubectl and helm
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Panato <[email protected]>
  • Loading branch information
cpanato committed Oct 16, 2019
1 parent 9e45a09 commit 6fa60fd
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
@@ -1,4 +1,4 @@
FROM alpine:3.9
FROM alpine:3.10

RUN apk --no-cache add \
curl \
Expand All @@ -19,13 +19,13 @@ ARG YAMALE_VERSION=1.8.0
RUN pip install "yamale==$YAMALE_VERSION"

# Install kubectl
ARG KUBECTL_VERSION=v1.14.1
ARG KUBECTL_VERSION=v1.16.0
RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$KUBECTL_VERSION/bin/linux/amd64/kubectl" && \
chmod +x kubectl && \
mv kubectl /usr/local/bin/

# Install Helm
ARG HELM_VERSION=v2.13.1
ARG HELM_VERSION=v2.14.1
RUN curl -LO "https://kubernetes-helm.storage.googleapis.com/helm-$HELM_VERSION-linux-amd64.tar.gz" && \
mkdir -p "/usr/local/helm-$HELM_VERSION" && \
tar -xzf "helm-$HELM_VERSION-linux-amd64.tar.gz" -C "/usr/local/helm-$HELM_VERSION" && \
Expand Down

0 comments on commit 6fa60fd

Please sign in to comment.