use alpine:latest as the base image for terraform docker containers

This commit is contained in:
Alvin Huang 2020-07-01 16:03:06 -04:00
parent 9cf5a18532
commit b52715a8f7
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
# tree, without any dependency on there being an existing release on
# releases.hashicorp.com.
FROM alpine:3.12 as build
FROM alpine:latest as build
LABEL maintainer="HashiCorp Terraform Team <terraform@hashicorp.com>"
# This is intended to be run from the hooks/build script, which sets this
@ -33,7 +33,7 @@ RUN apk add --no-cache git curl openssh gnupg && \
unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /bin && \
rm -f terraform_${TERRAFORM_VERSION}_linux_amd64.zip terraform_${TERRAFORM_VERSION}_SHA256SUMS*
FROM alpine:3.12 as final
FROM alpine:latest as final
ARG TERRAFORM_VERSION=UNSPECIFIED
LABEL "com.hashicorp.terraform.version"="${TERRAFORM_VERSION}"