docker: upgrade base images to alpine:3.17 (#7043)

pull/7329/head
Joe Chen 2023-01-30 20:38:53 +08:00 committed by GitHub
parent 5c47ecfcb8
commit 9df10cb8cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM golang:alpine3.14 AS binarybuilder
FROM golang:alpine3.17 AS binarybuilder
RUN apk --no-cache --no-progress add --virtual \
build-deps \
build-base \
@ -11,7 +11,7 @@ COPY . .
RUN ./docker/build/install-task.sh
RUN TAGS="cert pam" task build
FROM alpine:3.14
FROM alpine:3.17
RUN apk --no-cache --no-progress add \
bash \
ca-certificates \