Skip to content

Commit

Permalink
Merge pull request #13 from DNXLabs/feature/terragrunt
Browse files Browse the repository at this point in the history
Feature/terragrunt
  • Loading branch information
alandavid authored Aug 20, 2024
2 parents 6fa07ed + 8b023df commit f821992
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion 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 @@ -33,7 +34,9 @@ RUN apk --no-cache update && \
unzip /tmp/terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /usr/bin && \
rm -rf /var/tmp/ && \
rm -rf /tmp/* && \
rm -rf /var/cache/apk/*
rm -rf /var/cache/apk/* && \
wget -q 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 f821992

Please sign in to comment.