美文网首页
go mod download 执行超时

go mod download 执行超时

作者: langlyyy | 来源:发表于2021-09-26 11:33 被阅读0次
    image.png Step 7/16 : RUN go mod download
    ---> 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

    相关文章

      网友评论

          本文标题:go mod download 执行超时

          本文链接:https://www.haomeiwen.com/subject/nsrqnltx.html