Skip to content

Commit

Permalink
Adding terragrunt variable version
Browse files Browse the repository at this point in the history
  • Loading branch information
alandavid committed Aug 20, 2024
1 parent 48e3440 commit 1dee6b3
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM alpine:3.13

ENV TERRAFORM_VERSION=1.9.4
ENV AWSCLI_VERSION=1.19.73
ENV TERRAGRUNT_VERSION=v0.62.2


VOLUME ["/work"]
Expand Down Expand Up @@ -34,11 +35,8 @@ RUN apk --no-cache update && \
rm -rf /var/tmp/ && \
rm -rf /tmp/* && \
rm -rf /var/cache/apk/* && \
wget -qO- https://github.com/gruntwork-io/terragrunt/releases/download/v0.62.2/terragrunt_linux_amd64 -O /usr/local/bin/terragrunt && \
chmod +x /usr/local/bin/terragrunt && \
wget -qO- https://releases.hashicorp.com/terraform/1.9.3/terraform_1.9.3_linux_amd64.zip -O /tmp/terraform.zip && \
unzip /tmp/terraform.zip -d /usr/local/bin && \
chmod +x /usr/local/bin/terraform
wget -qO- https://github.com/gruntwork-io/terragrunt/releases/download/${TERRAGRUNT_VERSION}/terragrunt_linux_amd64 -O /usr/local/bin/terragrunt && \
chmod +x /usr/local/bin/terragrunt

COPY scripts /opt/scripts
RUN chmod 777 /opt/scripts/*
Expand Down

0 comments on commit 1dee6b3

Please sign in to comment.