Skip to content

Commit

Permalink
Added terraform, python and awscli to dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Shah Newaz Khan committed Nov 10, 2019
1 parent ab8d5d2 commit fee6899
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Expand Up @@ -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/*

Expand Down

0 comments on commit fee6899

Please sign in to comment.