Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Security upgrade alpine from 3.9.2 to 3.14 #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/docker-release/Dockerfile-release
Original file line number Diff line number Diff line change
Expand Up @@ -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.14 as build
LABEL maintainer="HashiCorp Terraform Team <terraform@hashicorp.com>"

# This is intended to be run from the hooks/build script, which sets this
Expand All @@ -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.14 as final

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

Expand Down