Tag: npm start

2个进程在同一个端口?

我正在Docker容器中运行一个节点应用程序。 这是dockerfile FROM maven:3.3.3-jdk-8 #install node RUN apt-get update RUN apt-get -qq update RUN apt-get install -y nodejs npm # TODO could uninstall some build dependencies RUN update-alternatives –install /usr/bin/node node /usr/bin/nodejs 10 # Install packages for envsubst RUN apt-get update && apt-get upgrade -y –force-yes && rm -rf /var/lib/apt/lists/*; RUN apt-get update RUN apt-get […]