From 671af383711205472d305e1c9c84faaadd2c7eda Mon Sep 17 00:00:00 2001 From: Eli Yip Date: Mon, 2 Jun 2025 21:48:22 +0800 Subject: [PATCH] build: bump docker base image to alpine:3.22 --- Dockerfile | 2 +- Dockerfile.goreleaser | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6dfa4f3..db73a74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/Dockerfile.goreleaser b/Dockerfile.goreleaser index 6a8f670..402f6aa 100644 --- a/Dockerfile.goreleaser +++ b/Dockerfile.goreleaser @@ -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"] \ No newline at end of file