container-images/terraform-tools (e58c6bf)
Published 2025-09-24 05:49:26 +00:00 by registry
Installation
docker pull forgejo.commonground.utrecht.nl/gemeente-utrecht/container-images/terraform-tools:e58c6bfsha256:7adb9bf57d427e48cc0f69a06a0f0bc7dd4238c66cb16e0c778c7777652e0d64Image layers
| ADD alpine-minirootfs-3.18.12-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| ENV TF_VERSION=1.8.2 |
| ENV TG_VERSION=v0.67.16 |
| ENV SOPS_VERSION=v3.7.3 |
| ENV GO_VERSION=1.21.0 |
| RUN /bin/sh -c apk add --update --no-cache bash git openssh make curl python3 # buildkit |
| RUN /bin/sh -c curl -fL https://releases.hashicorp.com/terraform/${TF_VERSION}/terraform_${TF_VERSION}_linux_amd64.zip -o terraform.zip && unzip terraform.zip && mv terraform /usr/local/bin/ && rm -f terraform.zip && chmod +x /usr/local/bin/terraform # buildkit |
| RUN /bin/sh -c curl -fL https://github.com/gruntwork-io/terragrunt/releases/download/${TG_VERSION}/terragrunt_linux_amd64 -o /usr/local/bin/terragrunt && chmod +x /usr/local/bin/terragrunt # buildkit |
| RUN /bin/sh -c curl -fL https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.amd64 -o ./sops && chmod +x ./sops && mv ./sops /usr/local/bin/ # buildkit |
| RUN /bin/sh -c curl -fLo golang.tgz https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz && tar -C /usr/local -xzf golang.tgz # buildkit |
| ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin |