You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM node:14.7 AS build-stage
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
ADD package.json package-lock.json /app/
|
|
RUN npm install
|
|
|
|
|
|
COPY . /app
|
|
|
|
|
|
RUN npm install --global pm2
|
|
|
|
EXPOSE 3010
|
|
|
|
CMD ["pm2", "start", "server.js", "--attach"]
|