We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab8d5d2 commit fee6899Copy full SHA for fee6899
Dockerfile
@@ -36,6 +36,14 @@ RUN mkdir -p /tmp/protoc && \
36
37
RUN GO111MODULE=off go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
38
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
47
RUN chmod +x /usr/local/bin/* && \
48
upx --lzma /usr/local/bin/*
49
0 commit comments