mirror of
https://github.com/tektoncd/catalog.git
synced 2024-11-26 06:23:37 +00:00
453919c447
Changes include: - adds version label - adds a minimum pipeline versions supported by the task - adds display name for task - adds tags for task - modified description to add a summary This patch moves the terraform-cli files to the task directory and renames the yaml file - The yaml filename is changed to match the resource name - Modifies the path for install task command in readme file Issue: #386 Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
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"]
|
|
|
|
|
|
|
|
|
|
|