Browse Source

Updated terraform to 0.12.5

pull/96/head
Alexander Sidorenko 6 years ago
parent
commit
3a1631ff05
No known key found for this signature in database GPG Key ID: 14A3B7B14DBED4A1
  1. 3
      CHANGELOG.md
  2. 12
      Dockerfile

3
CHANGELOG.md

@ -1,3 +1,6 @@
## 6.0-0.12.5 (2019-07-31)
* Update embedded TF to `0.12.5`
## 6.0-0.12.4 (2019-07-12)
* Update embedded TF to `0.12.4`

12
Dockerfile

@ -19,13 +19,13 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -tags netgo -o /go/bin/dro
FROM alpine:3.9
RUN apk -U add \
ca-certificates \
git \
wget \
openssh-client && \
rm -rf /var/cache/apk/*
ca-certificates \
git \
wget \
openssh-client && \
rm -rf /var/cache/apk/*
ENV TERRAFORM_VERSION 0.12.4
ENV TERRAFORM_VERSION 0.12.5
RUN wget -q https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip -O terraform.zip && \
unzip terraform.zip -d /bin && \
rm -f terraform.zip

Loading…
Cancel
Save