From a5bd12945d74c0b1d276fd29ce06882d6ebd77bf Mon Sep 17 00:00:00 2001 From: MaysWind Date: Wed, 15 Oct 2025 23:16:45 +0800 Subject: [PATCH] upgrade golang to 1.25.3, node.js to 24.10.0, alpine base image to 3.22.2 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 44bd6c3d..99b89447 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build backend binary file -FROM golang:1.25.1-alpine3.22 AS be-builder +FROM golang:1.25.3-alpine3.22 AS be-builder ARG RELEASE_BUILD ARG BUILD_PIPELINE ARG CHECK_3RD_API @@ -15,7 +15,7 @@ RUN apk add git gcc g++ libc-dev RUN ./build.sh backend # Build frontend files -FROM --platform=$BUILDPLATFORM node:24.7.0-alpine3.22 AS fe-builder +FROM --platform=$BUILDPLATFORM node:24.10.0-alpine3.22 AS fe-builder ARG RELEASE_BUILD ARG BUILD_PIPELINE ENV RELEASE_BUILD=$RELEASE_BUILD @@ -27,7 +27,7 @@ RUN apk add git RUN ./build.sh frontend # Package docker image -FROM alpine:3.22.1 +FROM alpine:3.22.2 LABEL maintainer="MaysWind " RUN addgroup -S -g 1000 ezbookkeeping && adduser -S -G ezbookkeeping -u 1000 ezbookkeeping RUN apk --no-cache add tzdata