1
0
mirror of https://github.com/tektoncd/catalog.git synced 2024-11-24 06:15:46 +00:00
catalog/terraform-cli/Dockerfile

19 lines
367 B
Docker
Raw Permalink Normal View History

FROM registry.access.redhat.com/ubi8/ubi
RUN yum update -y && \
yum install zip -y && \
curl -O https://releases.hashicorp.com/terraform/0.12.13/terraform_0.12.13_linux_amd64.zip && \
unzip terraform_0.12.13_linux_amd64.zip -d /usr/local/bin && \
yum clean all && \
rm -rf /var/cache/yum
USER 1001
ENTRYPOINT ["/usr/local/bin/terraform"]