build: bump docker base image to alpine:3.22

This commit is contained in:
Eli Yip 2025-06-02 21:48:22 +08:00
parent 83eb355946
commit 671af38371
No known key found for this signature in database
GPG Key ID: C98B69D4CF7D7EC5
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ COPY --link . .
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o dashboard-server .
# ---- Runtime Stage ----
FROM alpine:3.21
FROM alpine:3.22
WORKDIR /app

View File

@ -1,4 +1,4 @@
FROM alpine:3.21
FROM alpine:3.22
WORKDIR /app
@ -7,4 +7,4 @@ COPY --link . .
EXPOSE 9099
ENV SERVER_PORT="9099"
CMD ["/app/dashboard-server"]
CMD ["/app/dashboard-server"]