bump base image of light docker image to alpine:3.12

This commit is contained in:
Alvin Huang 2020-06-17 13:08:28 -04:00
parent 2de5556491
commit 9364cf5964
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.9.2 as build
FROM alpine:3.12 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.9.2 as final
FROM alpine:3.12 as final
ARG TERRAFORM_VERSION=UNSPECIFIED
LABEL "com.hashicorp.terraform.version"="${TERRAFORM_VERSION}"