解决服务器docker中安装依赖卡在node install.js 不动问题
install.js,里面的下载是依赖于electron-download这个模块所以在Dockerfile中修改:FROM node:latestRUN mkdir -p /compImg/serviceWORKDIR /compImg/serviceCOPY . /compImg/service# 安装cnpm 即可解决,速度很快RUN npm install -g cnpm --regist
·
install.js,里面的下载是依赖于electron-download这个模块
所以在Dockerfile中修改:
FROM node:latest
RUN mkdir -p /compImg/service
WORKDIR /compImg/service
COPY . /compImg/service
# 安装cnpm 即可解决,速度很快
RUN npm install -g cnpm --registry=https://registry.npm.taobao.org
RUN cnpm install
RUN cnpm install pm2 -g
EXPOSE 3000
CMD [ "pm2-docker", "start", "pm2.json" ]
更多推荐
已为社区贡献2条内容
所有评论(0)