From 785faeb60cb1ac045e47e2518ae49caff49341de Mon Sep 17 00:00:00 2001 From: Kharec Date: Thu, 4 Dec 2025 10:01:19 +0100 Subject: [PATCH] feat: update alpine to 3.23 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 058f291..7e5c825 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ ARG TARGETARCH=amd64 RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -ldflags="-s -w" -o /out/goyco ./cmd/goyco # building the application image -FROM alpine:3.22 +FROM alpine:3.23 RUN addgroup -S goyco && adduser -S -G goyco goyco \ && apk add --no-cache ca-certificates tzdata WORKDIR /app