ingress-nginx-helm/build/images/ingress-controller/Dockerfile

21 lines
487 B
Text
Raw Normal View History

2020-05-26 12:39:23 -04:00
FROM us.gcr.io/k8s-artifacts-prod/build-image/debian-base-amd64:v2.1.0
2020-05-29 18:07:10 -04:00
ENV TERRAFORM_VERSION 0.12.26
RUN clean-install \
bash \
curl \
ca-certificates \
unzip \
git \
2020-05-29 18:07:10 -04:00
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" ]