mirror of
https://github.com/tektoncd/catalog.git
synced 2024-11-24 06:15:46 +00:00
a25579314f
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
19 lines
367 B
Docker
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"]
|
|
|
|
|
|
|
|
|
|
|