Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatic versions update #55

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,28 @@ RUN apk add --no-cache --update \
ca-certificates \
curl

ENV TERRAGRUNT_VERSION=0.31.10
ENV TERRAGRUNT_VERSION=0.35.9
ENV TERRAGRUNT_DOWNLOAD_URL=https://github.com/gruntwork-io/terragrunt/releases/download
RUN curl -fsSL -O ${TERRAGRUNT_DOWNLOAD_URL}/v${TERRAGRUNT_VERSION}/terragrunt_linux_amd64 && \
curl -fsSL ${TERRAGRUNT_DOWNLOAD_URL}/v${TERRAGRUNT_VERSION}/SHA256SUMS | grep terragrunt_linux_amd64 > SHA256SUMS && \
sha256sum -c SHA256SUMS && \
mv terragrunt_linux_amd64 /usr/local/bin/terragrunt

ENV TERRAFORM_VERSION=1.0.6
ENV TERRAFORM_VERSION=1.0.11
ENV TERRAFORM_RELEASE_URL=https://releases.hashicorp.com/terraform
RUN curl -fsSL -O ${TERRAFORM_RELEASE_URL}/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
curl -fsSL ${TERRAFORM_RELEASE_URL}/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_SHA256SUMS | grep terraform_${TERRAFORM_VERSION}_linux_amd64.zip > SHA256SUMS && \
sha256sum -c SHA256SUMS && \
unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
mv terraform /usr/local/bin/

ENV OPA_VERSION=0.32.0
ENV OPA_VERSION=0.34.2
WORKDIR /opa-build
RUN curl -fsSL "https://codeload.github.com/open-policy-agent/opa/tar.gz/v${OPA_VERSION}" | tar xvz --strip-components=1 && \
go build && \
mv opa /usr/local/bin/

ENV CONFTEST_VERSION=0.27.0
ENV CONFTEST_VERSION=0.28.3
ENV CONFTEST_DOWNLOAD_URL=https://github.com/instrumenta/conftest/releases/download
RUN curl -fsSL -O ${CONFTEST_DOWNLOAD_URL}/v${CONFTEST_VERSION}/conftest_${CONFTEST_VERSION}_Linux_x86_64.tar.gz && \
curl -fsSL ${CONFTEST_DOWNLOAD_URL}/v${CONFTEST_VERSION}/checksums.txt | grep conftest_${CONFTEST_VERSION}_Linux_x86_64.tar.gz > checksums.txt && \
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# rrey/terraform-runner

![Build](https://github.com/rrey/terraform-runner/workflows/Docker%20Image%20CI/badge.svg)
![](https://img.shields.io/badge/Terraform-1.0.6-blueviolet)
![](https://img.shields.io/badge/Terragrunt-0.31.10-blue)
![](https://img.shields.io/badge/opa-0.32.0-lightgrey)
![](https://img.shields.io/badge/conftest-0.27.0-blue)
![](https://img.shields.io/badge/Terraform-1.0.11-blueviolet)
![](https://img.shields.io/badge/Terragrunt-0.35.9-blue)
![](https://img.shields.io/badge/opa-0.34.2-lightgrey)
![](https://img.shields.io/badge/conftest-0.28.3-blue)

This docker image aims at being a CI runner allowing to handle Terraform content.
The image contains opinionated cool tools around Terraform like:
Expand Down