ingress-nginx-helm/build/images/nginx/Dockerfile
Manuel Alejandro de Brito Fontes 8683d2c2c6 Update terraform build images
2020-05-30 02:00:25 -04:00

20 lines
487 B
Docker

FROM us.gcr.io/k8s-artifacts-prod/build-image/debian-base-amd64:v2.1.0
ENV TERRAFORM_VERSION 0.12.26
RUN clean-install \
bash \
curl \
ca-certificates \
unzip \
git \
python3 \
openssh-client
RUN curl -sSL -o /terraform.zip "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip" \
&& unzip /terraform.zip -d /usr/bin \
&& rm -rf /terraform.zip
COPY entrypoint.sh /
CMD [ "/entrypoint.sh" ]