11FROM 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 "
2+ ARG TERRAFORM_VERSION="0.15.1 "
3+ ARG TERRAGRUNT_VERSION="0.29.2 "
4+ ARG HELM_VERSION="3.5.4 "
5+ ARG HELMFILE_VERSION="0.138.7 "
6+ ARG KUBECTL_VERSION="1.21.0 "
77ENV BASE_URL="https://get.helm.sh"
88ENV TAR_FILE="helm-v${HELM_VERSION}-linux-amd64.tar.gz"
99
@@ -13,7 +13,7 @@ RUN echo "**** install Python ****" && \
1313 if [ ! -e /usr/bin/python ]; then ln -sf python3 /usr/bin/python ; fi && \
1414 \
1515 echo "**** install pip ****" && \
16- python3 -m ensurepip && \
16+ python3 -m ensurepip && \
1717 pip3 install --no-cache --upgrade pip setuptools wheel && \
1818 if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi
1919
@@ -50,15 +50,15 @@ RUN wget https://storage.googleapis.com/kubernetes-release/release/v"$KUBECTL_VE
5050RUN 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 \
5151 && chmod +x /usr/local/bin/aws-iam-authenticator
5252
53- # Install docker
54- RUN apk add --no-cache --update docker
53+ # Install docker
54+ RUN apk add --no-cache --update docker
5555
5656# Install helmfile
5757RUN wget https://github.com/roboll/helmfile/releases/download/v${HELMFILE_VERSION}/helmfile_linux_amd64 \
5858 && chmod +x helmfile_linux_amd64 && mv helmfile_linux_amd64 /bin/helmfile
5959
6060# Install ssh
61- RUN apk add openssh
61+ RUN apk add openssh
6262
6363
6464ENTRYPOINT ["" ]
0 commit comments