upgrade golang to 1.21.9, node.js to 18.20.2

This commit is contained in:
MaysWind
2024-05-19 17:02:51 +08:00
parent cf120dbcbf
commit 72619f3dad
+2 -2
View File
@@ -1,5 +1,5 @@
# Build backend binary file
FROM golang:1.21.7-alpine3.19 AS be-builder
FROM golang:1.21.9-alpine3.19 AS be-builder
ARG RELEASE_BUILD
ENV RELEASE_BUILD=$RELEASE_BUILD
WORKDIR /go/src/github.com/mayswind/ezbookkeeping
@@ -9,7 +9,7 @@ RUN apk add git gcc g++ libc-dev
RUN ./build.sh backend
# Build frontend files
FROM --platform=$BUILDPLATFORM node:18.19.1-alpine3.19 AS fe-builder
FROM --platform=$BUILDPLATFORM node:18.20.2-alpine3.19 AS fe-builder
ARG RELEASE_BUILD
ENV RELEASE_BUILD=$RELEASE_BUILD
WORKDIR /go/src/github.com/mayswind/ezbookkeeping