Public Repositories
terraform-image (v1)
Installation
docker pull git.romalex.cc/public/terraform-image:v1sha256:e29341f0af1f08880d9e4e44b813d73c50520e9e07ae5075a48d83130a268559
Image Layers
| ADD alpine-minirootfs-3.22.2-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| RUN /bin/sh -c apk add --no-cache tzdata git openssh sed rsync bzip2 curl gpg gpg-agent yq jq helm docker nodejs && mkdir -p /root/.ssh && chmod 700 /root/.ssh && mkdir -p /usr/local/bin # buildkit |
| COPY drist /usr/local/bin/ # buildkit |
| RUN /bin/sh -c chmod 755 /usr/local/bin/drist # buildkit |
| ENV TZ=Europe/Kyiv |
| RUN /bin/sh -c ln -sf /usr/share/zoneinfo/Europe/Kyiv /etc/localtime # buildkit |
| ENV TERRAFORM_VERSION=1.12.2 |
| ENV TFLINT_VERSION=v0.58.1 |
| RUN /bin/sh -c cd /tmp && wget "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip" && unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /usr/local/bin && chmod +x /usr/local/bin/terraform && wget "https://github.com/terraform-linters/tflint/releases/download/${TFLINT_VERSION}/tflint_linux_amd64.zip" && unzip tflint_linux_amd64.zip -d /usr/local/bin && chmod +x /usr/local/bin/tflint && rm -rf /tmp/* # buildkit |