1
0
mirror of https://github.com/tektoncd/catalog.git synced 2024-11-26 06:23:37 +00:00
catalog/task/terraform-cli/0.1/Dockerfile
PuneetPunamiya 453919c447 Modifies terraform-cli task according to the new reorg proposal
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>
2020-07-10 22:06:57 +01: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"]