---> Running in ebdc1b3ca9f5
go mod download: github.com/onsi/ginkgo@v1.16.4: Get "https://proxy.golang.org/github.com/onsi/ginkgo/@v/v1.16.4.info": dial tcp 142.251.43.17:443: i/o timeout
go mod download: github.com/onsi/gomega@v1.15.0: Get "https://proxy.golang.org/github.com/onsi/gomega/@v/v1.15.0.info": dial tcp 142.251.43.17:443: i/o timeout
在执行docker build 的时候,go 拉取依赖会遇到超时的问题,查找百度后,可以通过增加代理的方法解决。如下
image.png 增加这一行即可解决这个问题
RUN go env -w GOPROXY=https://goproxy.cn,direct
网友评论