aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJoe Chen <jc@unknwon.io>2023-01-30 20:38:53 +0800
committerGitHub <noreply@github.com>2023-01-30 20:38:53 +0800
commit9df10cb8cc84fbeba9eb603c458078f132a6c201 (patch)
treec16a494c80b11d76e3bc0a06511e623305aa17b7 /Dockerfile
parent5c47ecfcb815077bb02f97a1bd14a8ca21c07df8 (diff)
docker: upgrade base images to alpine:3.17 (#7043)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index a0f7ad44..cb883d76 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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 \