# our base image
FROM node:18.12

# specify the port number the container should expose
EXPOSE 3006

# User user as root
USER root

# Create App
RUN mkdir /app

# Run update and Strongloop install
RUN npm install -g npm
RUN npm install -g pm2
RUN pm2 install pm2-logrotate
