FROM node:lts-slim
RUN npm -g install pm2
COPY . /app
WORKDIR /app
CMD ["pm2-docker", "./server/server.js"]