forked from hashicorp/terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump base image of light docker image to alpine:3.12
- Loading branch information
1 parent
2de5556
commit 9364cf5
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]>" | ||
|
||
# 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}" | ||
|