You've already forked terraform-image
generated from public/repo-template
All checks were successful
Build docker image / Build docker image (push) Successful in 18s
16 lines
602 B
Docker
16 lines
602 B
Docker
FROM git.romalex.cc/public/ci-image:v1
|
|
|
|
ENV TERRAFORM_VERSION=1.12.2
|
|
ENV TFLINT_VERSION=v0.58.1
|
|
|
|
RUN \
|
|
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/*
|
|
|