From 9364cf5964fd48e77ac5a489c77d0fd7d7fcbdf3 Mon Sep 17 00:00:00 2001 From: Alvin Huang <17609145+alvin-huang@users.noreply.github.com> Date: Wed, 17 Jun 2020 13:08:28 -0400 Subject: [PATCH] bump base image of light docker image to alpine:3.12 --- scripts/docker-release/Dockerfile-release | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/docker-release/Dockerfile-release b/scripts/docker-release/Dockerfile-release index 7a05f283c..a5fc40f5f 100644 --- a/scripts/docker-release/Dockerfile-release +++ b/scripts/docker-release/Dockerfile-release @@ -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 " # 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}"