fix: set GOTOOLCHAIN=auto for go 1.26+ requirement
Build and Deploy / build-and-push (push) Successful in 1m10s

This commit is contained in:
2026-07-21 22:19:16 +08:00
parent 0caa572674
commit b4eff7ee04
+1
View File
@@ -10,6 +10,7 @@ RUN pnpm build
FROM golang:1.24-alpine AS backend-builder
WORKDIR /app
RUN apk add --no-cache git
ENV GOTOOLCHAIN=auto
COPY go.mod go.sum ./
RUN go mod download
COPY . .