chore: Update Go dependencies and Dockerfile; tweak AWS config in go.mod

- Update go.mod to replace `github.com/aws/aws-sdk-go-v2/config` with `github.com/aws/aws-sdk-go-v2/credentials`
- Update Dockerfile to use golang version `1.22.2-bullseye`
- Modify go.sum to downgrade and remove certain dependencies, with no functional changes to code
This commit is contained in:
Laisky.Cai
2024-04-18 05:25:04 +00:00
parent 5874035e42
commit 6bb110154b
3 changed files with 2 additions and 26 deletions

View File

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