From c9711a09caeb78f00cb6cf8fac4f80a89b711617 Mon Sep 17 00:00:00 2001 From: Szymon Richert Date: Wed, 15 Jun 2022 22:41:45 +0200 Subject: [PATCH] Add terragrunt --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 741b3ab..8318e28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,6 +30,8 @@ RUN set -xe;\ curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash;\ curl -s https://api.github.com/repos/roboll/helmfile/releases/latest | jq -r '.assets[] | .browser_download_url' | grep 'linux_amd64' | xargs wget -qO /usr/local/bin/helmfile;\ chmod a+x /usr/local/bin/helmfile;\ + wget -qO /usr/local/bin/terragrunt https://github.com/gruntwork-io/terragrunt/releases/download/v0.37.4/terragrunt_linux_amd64;\ + chmod a+x /usr/local/bin/terragrunt;\ wget -qO /tmp/terraform.zip https://releases.hashicorp.com/terraform/1.2.2/terraform_1.2.2_linux_amd64.zip;\ unzip /tmp/terraform.zip;\ rm /tmp/terraform.zip;\