nodejs 在 build docker 镜像时 grpc 库安装超时的解决办法
· 阅读需 1 分钟
在 Dockerfile 执行命令时,添加以下选项
FROM node
COPY . .
RUN npm install --grpc_node_binary_host_mirror=https://npm.taobao.org/mirrors/
CMD ['npm', 'start']
在 Dockerfile 执行命令时,添加以下选项
FROM node
COPY . .
RUN npm install --grpc_node_binary_host_mirror=https://npm.taobao.org/mirrors/
CMD ['npm', 'start']