Added files

This commit is contained in:
2023-10-31 12:54:31 +01:00
commit b780b891ed
7 changed files with 160 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM hashicorp/terraform:1.6.2
LABEL maintainer="docker@2martens.de" description="Terraform for Drone"
RUN mkdir -p /opt/terraform/bin
COPY tool.sh /opt/terraform/bin
RUN chmod +x /opt/terraform/bin/tool.sh
ENTRYPOINT ["/opt/terraform/bin/tool.sh"]