Skip to content

Commit 4dfcdf8

Browse files
cpanatounguiculus
authored andcommitted
bump alpine base image, kubectl and helm (#176)
Signed-off-by: Carlos Panato <[email protected]>
1 parent 9e45a09 commit 4dfcdf8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.9
1+
FROM alpine:3.10
22

33
RUN apk --no-cache add \
44
curl \
@@ -19,13 +19,13 @@ ARG YAMALE_VERSION=1.8.0
1919
RUN pip install "yamale==$YAMALE_VERSION"
2020

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

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

0 commit comments

Comments
 (0)