1
0
mirror of https://github.com/Mrs4s/go-cqhttp.git synced 2025-05-05 19:43:49 +08:00

Merge pull request #451 from daofeng2015/master

fix:Dockerfile增加代理源
This commit is contained in:
Mrs4s 2020-11-29 13:55:19 +08:00 committed by GitHub
commit b9fb833af4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,7 @@ FROM golang:1.15.5-alpine AS builder
RUN go env -w GO111MODULE=auto \ RUN go env -w GO111MODULE=auto \
&& go env -w CGO_ENABLED=0 \ && go env -w CGO_ENABLED=0 \
&& go env -w GOPROXY=https://goproxy.cn,direct \
&& mkdir /build && mkdir /build
WORKDIR /build WORKDIR /build