b34904549f
mirror.soroushasadi.com serves only cached images (node:20 resolved, golang:1.25 was 'not found' — too new to be cached, upstream can't back-fill). Point the Go services' golang:1.25-alpine base at mirror.kargadan.ir per infra owner; alpine/ busybox/node/postgres/minio stay on soroushasadi (cached). GOPROXY already kargadan.
15 lines
594 B
Docker
15 lines
594 B
Docker
FROM mirror.kargadan.ir/golang:1.25-alpine AS builder
|
|
# Go module/toolchain fetches via the kargadan Nexus (proxy.golang.org geo-blocked).
|
|
ENV GOPROXY=https://mirror.kargadan.ir/repository/go-group/ GOSUMDB=off
|
|
WORKDIR /app
|
|
# Dependencies are vendored — build fully offline (proxy.golang.org is geo-blocked from some regions)
|
|
COPY . .
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -mod=vendor -ldflags="-s -w" -o gateway ./cmd/server
|
|
|
|
FROM mirror.soroushasadi.com/alpine:3.20
|
|
RUN apk add --no-cache ca-certificates tzdata
|
|
WORKDIR /app
|
|
COPY --from=builder /app/gateway .
|
|
EXPOSE 8080
|
|
CMD ["./gateway"]
|