From fee689963d2f6a8d7537030298dfaec7f3813382 Mon Sep 17 00:00:00 2001 From: Shah Newaz Khan Date: Thu, 31 Oct 2019 00:30:33 -0700 Subject: [PATCH] Added terraform, python and awscli to dockerfile --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Dockerfile b/Dockerfile index 849c08f0d..d51aa7f16 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,6 +36,14 @@ RUN mkdir -p /tmp/protoc && \ RUN GO111MODULE=off go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway +RUN curl -kLo /tmp/terraform.zip "https://releases.hashicorp.com/terraform/0.12.0/terraform_0.12.0_linux_amd64.zip" && \ +unzip -d /usr/local/bin/ /tmp/terraform.zip + +RUN apk add --update bash ca-certificates git python && \ +apk add --update -t deps make py-pip + +RUN pip install awscli + RUN chmod +x /usr/local/bin/* && \ upx --lzma /usr/local/bin/*