From feefedfaf6453a29a6f35436b9f4bc5208fef4d5 Mon Sep 17 00:00:00 2001 From: Patrick Hobusch Date: Tue, 18 Oct 2022 20:40:32 +0800 Subject: [PATCH 1/2] Dockerfile: Install Ansible --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f5227eb..986cd4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,11 @@ FROM hashicorp/terraform:1.2.7 ## Install packages -RUN apk add --no-cache bash make postgresql +RUN apk add --no-cache \ + ansible \ + bash \ + make \ + postgresql ## Install Terragrunt ARG TERRAGRUNT_VERSION=0.38.7 From 102fd855699d1c762721f6631ed62d1a4892327b Mon Sep 17 00:00:00 2001 From: Patrick Hobusch Date: Tue, 18 Oct 2022 20:33:07 +0800 Subject: [PATCH 2/2] Update Terraform to 1.2.9 and Terragrunt to 0.38.12 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 986cd4c..e8c2d2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM hashicorp/terraform:1.2.7 +FROM hashicorp/terraform:1.2.9 ## Install packages RUN apk add --no-cache \ @@ -8,7 +8,7 @@ RUN apk add --no-cache \ postgresql ## Install Terragrunt -ARG TERRAGRUNT_VERSION=0.38.7 +ARG TERRAGRUNT_VERSION=0.38.12 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