diff --git a/terraform/Dockerfile b/terraform/Dockerfile index a0e0638..a5af8f0 100644 --- a/terraform/Dockerfile +++ b/terraform/Dockerfile @@ -15,12 +15,10 @@ RUN apk add --no-cache \ ENV TERRAFORM_VERSION v0.14.7 -RUN go get github.com/hashicorp/terraform || true +RUN git clone --depth 1 --branch ${TERRAFORM_VERSION} https://github.com/hashicorp/terraform.git /go/src/github.com/hashicorp/terraform WORKDIR /go/src/github.com/hashicorp/terraform -RUN git checkout "${TERRAFORM_VERSION}" - RUN CGO_ENABLED=0 go build -a -tags netgo -ldflags '-w -extldflags "-static"' \ -o bin/terraform && \ mv bin/terraform /usr/bin/terraform