1- FROM alpine:3.10.1
2- ARG TERRAFORM_VERSION="0.12.25"
3- ARG TERRAGRUNT_VERSION="0.22.4"
4- ARG HELM_VERSION="3.0.2"
5- ARG HELMFILE_VERSION="0.98.3"
6- ARG KUBECTL_VERSION="1.15.11"
1+ FROM alpine:3.13.5
2+
3+ ARG TERRAFORM_VERSION="0.15.1"
4+ ARG TERRAGRUNT_VERSION="0.29.2"
5+ ARG HELM_VERSION="3.5.4"
6+ ARG HELMFILE_VERSION="0.138.7"
7+ ARG KUBECTL_VERSION="1.21.0"
78ENV BASE_URL="https://get.helm.sh"
89ENV TAR_FILE="helm-v${HELM_VERSION}-linux-amd64.tar.gz"
910
@@ -13,7 +14,7 @@ RUN echo "**** install Python ****" && \
1314 if [ ! -e /usr/bin/python ]; then ln -sf python3 /usr/bin/python ; fi && \
1415 \
1516 echo "**** install pip ****" && \
16- python3 -m ensurepip && \
17+ python3 -m ensurepip && \
1718 pip3 install --no-cache --upgrade pip setuptools wheel && \
1819 if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi
1920
@@ -50,15 +51,14 @@ RUN wget https://storage.googleapis.com/kubernetes-release/release/v"$KUBECTL_VE
5051RUN curl -L https://amazon-eks.s3-us-west-2.amazonaws.com/1.13.7/2019-06-11/bin/linux/amd64/aws-iam-authenticator -o /usr/local/bin/aws-iam-authenticator \
5152 && chmod +x /usr/local/bin/aws-iam-authenticator
5253
53- # Install docker
54- RUN apk add --no-cache --update docker
54+ # Install docker
55+ RUN apk add --no-cache --update docker
5556
5657# Install helmfile
5758RUN wget https://github.com/roboll/helmfile/releases/download/v${HELMFILE_VERSION}/helmfile_linux_amd64 \
5859 && chmod +x helmfile_linux_amd64 && mv helmfile_linux_amd64 /bin/helmfile
5960
6061# Install ssh
61- RUN apk add openssh
62-
62+ RUN apk add openssh
6363
6464ENTRYPOINT ["" ]
0 commit comments