From db09ccdea7d1616b4939cd90d7101316409dff50 Mon Sep 17 00:00:00 2001 From: Patrick Hobusch Date: Thu, 18 Aug 2022 22:10:57 +0200 Subject: [PATCH] Update Terraform to 1.2.7 and Terragrunt to 0.38.7 --- Dockerfile | 6 +++--- README.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9a68d65..f5227eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ -FROM hashicorp/terraform:1.1.9 +FROM hashicorp/terraform:1.2.7 ## Install packages RUN apk add --no-cache bash make postgresql ## Install Terragrunt -ARG TERRAGRUNT_VERSION=0.36.12 +ARG TERRAGRUNT_VERSION=0.38.7 RUN wget "https://github.com/gruntwork-io/terragrunt/releases/download/v${TERRAGRUNT_VERSION}/terragrunt_linux_amd64" -O /usr/local/bin/terragrunt --no-verbose \ && chmod +x /usr/local/bin/terragrunt -## remove WORKDIR and ENTRYPOINT FROM terraform image +## remove WORKDIR and ENTRYPOINT FROM base image WORKDIR / ENTRYPOINT [] diff --git a/README.md b/README.md index b5d0a80..7541b3b 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ Terragrunt This Docker image contains the following primary binaries: -* `terraform` -* `terragrunt` +* [`terraform`](https://github.com/hashicorp/terraform/releases) +* [`terragrunt`](https://github.com/gruntwork-io/terragrunt/releases) Terraform version compatibility table: @@ -57,5 +57,5 @@ Execute commands inside the container: ``` bash-5.1# terragrunt -v -terragrunt version v0.36.12 +terragrunt version vX.Y.Z ```