1
0
mirror of https://github.com/tektoncd/catalog.git synced 2024-11-24 06:15:46 +00:00
catalog/terraform-cli/Dockerfile
Raffael Mendes a25579314f Terraform cli task creation
Adjusting for yamllint compliance

Squashing Commits

Adjusting workingdir to workingDir

Adjusting workingdir to workingDir

Adding the dockerfile to the repo

Squashing the commits after adding the dockerfile

Adjusting the Dockerfile for smaller size

Adjusting Dockerfile for smaller size and improved writing
2019-11-29 01:26:36 -06:00

19 lines
367 B
Docker

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"]