feat 添加GONOPROXY
All checks were successful
Build image / build (push) Successful in 1m39s

This commit is contained in:
timerzz 2024-05-13 20:27:39 +08:00
parent 0d57e2950b
commit f0e46a4116

View File

@ -1,11 +1,12 @@
FROM golang as back
ARG GOPROXY=https://goproxy.cn,direct
WORKDIR /build
COPY . /build
ARG CGO_ENABLED=0
ARG GOPROXY=https://goproxy.cn,direct
ARG GOPRIVATE=gitea.timerzz.com
ARG GONOSUMDB=gitea.timerzz.com
ARG GONOPROXY=gitea.timerzz.com
RUN go build -trimpath -ldflags '-w -s' -o watcher ./main
FROM alpine:latest