From f55ecc4a065ad82c86e537b786597bdcdf5fc687 Mon Sep 17 00:00:00 2001 From: Joe Chen Date: Tue, 4 Mar 2025 23:15:41 -0500 Subject: [PATCH] chore: update image version in Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9279b44..7d326a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:alpine3.19 AS binarybuilder +FROM golang:alpine3.21 AS binarybuilder RUN apk --no-cache --no-progress add --virtual \ build-deps \ build-base \ @@ -17,7 +17,7 @@ RUN task build # Install Codenotify RUN GOBIN=/dist/.bin go install github.com/sourcegraph/codenotify@v0.6.4 -FROM alpine:3.19 +FROM alpine:3.21 RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories \ && apk --no-cache --no-progress add \ ca-certificates \