-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from aservo/feature/terraform-1.2.7-terragrunt-…
…0.38.7 Update Terraform to 1.2.7 and Terragrunt to 0.38.7
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters