2019-09-09 04:18:30 +00:00
|
|
|
FROM quay.io/kubernetes-ingress-controller/debian-base-amd64:0.1
|
|
|
|
|
2019-11-28 01:01:50 +00:00
|
|
|
ENV TERRAFORM_VERSION 0.12.16
|
2019-09-09 04:18:30 +00:00
|
|
|
|
|
|
|
RUN clean-install \
|
|
|
|
bash \
|
|
|
|
curl \
|
|
|
|
ca-certificates \
|
|
|
|
unzip \
|
|
|
|
git \
|
|
|
|
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" ]
|