From 72619f3dadd50159bed34254285a3671f42269d7 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Sun, 19 May 2024 17:02:51 +0800 Subject: [PATCH] upgrade golang to 1.21.9, node.js to 18.20.2 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8cd1fe25..549a08c1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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