我想在全球安装pm2来运行我的nodejs应用程序。我的操作系统是ubuntu14.04 64位,节点版本为0.10.33。
当我运行命令npm pm2 -g时,会出现以下错误
npm ERR! pm2@0.11.1 preinstall: `bash ./scripts/preinstall.sh`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the pm2@0.11.1 preinstall script.
npm ERR! This is most likely a problem with the pm2 package,
n
我有以下快捷/节点应用程序:
FROM node:12
WORKDIR /usr/share/jtapp
COPY package*.json ./
RUN apt-get update
RUN apt-get install -y net-tools
RUN npm install
RUN npm install pm2@latest -g
#RUN npm ci --only=production
COPY . .
EXPOSE 3000
RUN pm2 start server.js
它似乎建造得很好。但是当我启动映像并通过bash附加时,没有运行pm2进程。
以下是构建的结果:
Se