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 f284069 commit e27e60cCopy full SHA for e27e60c
Dockerfile
@@ -10,6 +10,10 @@ LABEL description="Serverless and Vault with Terraform for CI/CD"
10
11
ARG GOLANG_VERSION=1.15.6
12
13
+RUN wget --quiet https://releases.hashicorp.com/terraform/0.12.29/terraform_0.12.29_linux_amd64.zip \
14
+ && unzip terraform_0.12.29_linux_amd64.zip \
15
+ && mv terraform /usr/bin \
16
+ && rm terraform_0.12.29_linux_amd64.zip
17
18
RUN apk add --no-cache --update git bash openssh make nodejs nodejs-npm jq
19
RUN npm install -g serverless@1.66 \
0 commit comments