Skip to content

Commit 6824407

Browse files
authored
Merge pull request #25456 from hashicorp/use-alpine-latest
use alpine:latest as the base image for terraform docker containers
2 parents 1232404 + b52715a commit 6824407

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/docker-release/Dockerfile-release

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# tree, without any dependency on there being an existing release on
88
# releases.hashicorp.com.
99

10-
FROM alpine:3.12 as build
10+
FROM alpine:latest as build
1111
LABEL maintainer="HashiCorp Terraform Team <terraform@hashicorp.com>"
1212

1313
# 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 && \
3333
unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /bin && \
3434
rm -f terraform_${TERRAFORM_VERSION}_linux_amd64.zip terraform_${TERRAFORM_VERSION}_SHA256SUMS*
3535

36-
FROM alpine:3.12 as final
36+
FROM alpine:latest as final
3737
ARG TERRAFORM_VERSION=UNSPECIFIED
3838

3939
LABEL "com.hashicorp.terraform.version"="${TERRAFORM_VERSION}"

0 commit comments

Comments
 (0)