From 979cabf8ffe2e347aa2de5c1309317e49afcb428 Mon Sep 17 00:00:00 2001 From: fabriciojs Date: Thu, 26 Nov 2020 21:25:06 -0300 Subject: [PATCH] add git (required for terraform init) --- terraform-aws/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/terraform-aws/Dockerfile b/terraform-aws/Dockerfile index 85f0935..debff64 100644 --- a/terraform-aws/Dockerfile +++ b/terraform-aws/Dockerfile @@ -9,7 +9,10 @@ ARG AWS_IAM_AUTH_VERSION=0.5.1 WORKDIR /tmp -RUN apk add --update --no-cache --virtual .build-deps curl ca-certificates +RUN apk add --no-cache --virtual .build-deps curl ca-certificates + +# Install general dependencies +RUN apk add --no-cache git # Install terraform RUN curl -L https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip -o terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \