fix: Update Dockerfile with newer golang version and base image.

- Updated the Golang version from 1.22.0 to 1.22.1 in the Dockerfile.
- Changed the base image version from golang:1.22.0-bullseye to golang:1.22.1-bullseye in the Dockerfile.
- The updates to the Dockerfile include important security and bug fixes, as well as potential performance improvements.
This commit is contained in:
Laisky.Cai 2024-03-11 09:32:25 +00:00
parent 72501cb746
commit 914f1ccd8c

View File

@ -12,7 +12,7 @@ WORKDIR /web/berry
RUN npm install
RUN DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$(cat VERSION) npm run build
FROM golang:1.22.0-bullseye AS builder2
FROM golang:1.22.1-bullseye AS builder2
ENV GO111MODULE=on \
CGO_ENABLED=1 \