added terragrunt

This commit is contained in:
krystan honour 2018-10-04 10:44:31 +01:00
parent 3983ca935b
commit 914dba7924

11
terragrunt/Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM alpine:latest
LABEL maintainer "Krystan Honour <krystan@gmail.com>"
ADD https://github.com/gruntwork-io/terragrunt/releases/download/v0.16.14/terragrunt_linux_amd64 terragrunt
RUN chmod +x terragrunt
FROM hashicorp/terraform:latest
COPY --from=0 terragrunt /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/terragrunt"]