Skip to content

Commit fee6899

Browse files
committed
Added terraform, python and awscli to dockerfile
1 parent ab8d5d2 commit fee6899

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ RUN mkdir -p /tmp/protoc && \
3636

3737
RUN GO111MODULE=off go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
3838

39+
RUN curl -kLo /tmp/terraform.zip "https://releases.hashicorp.com/terraform/0.12.0/terraform_0.12.0_linux_amd64.zip" && \
40+
unzip -d /usr/local/bin/ /tmp/terraform.zip
41+
42+
RUN apk add --update bash ca-certificates git python && \
43+
apk add --update -t deps make py-pip
44+
45+
RUN pip install awscli
46+
3947
RUN chmod +x /usr/local/bin/* && \
4048
upx --lzma /usr/local/bin/*
4149

0 commit comments

Comments
 (0)