docker build fabric入门套件(npm错误)

时间:2016-11-09 09:47:26

标签: hyperledger

我正在使用guide在Ubuntu 16.04 64bit中构建HyperLedger光纤入门工具包并得到此npm错误:

enter image description here

任何人都知道什么是错的?

1 个答案:

答案 0 :(得分:0)

您遇到此错误,因为您可能正在尝试在公司代理服务器后面运行docker build

要强制docker使用代理服务器进行构建,您可以将http-proxy和https-proxy设置指定为build-args

 docker build --build-arg HTTP_PROXY=<http proxy url> HTTPS_PROXY=<https proxy url>

另请查看此question,它解决了类似的问题