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
[user] | |
name = Sergei Ryabkov | |
email = [email protected] | |
[diff] | |
tool = bcomp | |
[difftool] | |
prompt = false |
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
FROM runatlantis/atlantis:v0.6.0 | |
ARG TERRAGRUNT_VER=v0.18.2 | |
ARG TERRAGRUNT_DOWNLOAD_SITE="https://github.com/gruntwork-io/terragrunt/releases/download" | |
ARG TERRAGRUNT_DOWNLOAD_URL="${TERRAGRUNT_DOWNLOAD_SITE}/${TERRAGRUNT_VER}/terragrunt_linux_amd64" | |
RUN curl -sL "${TERRAGRUNT_DOWNLOAD_URL}" -o /usr/local/bin/terragrunt \ | |
&& chmod +x /usr/local/bin/terragrunt | |
# https://github.com/GoogleCloudPlatform/cloud-sdk-docker/blob/master/alpine/Dockerfile |