# container img FROM node:14 WORKDIR /app # copy files and install deps COPY package*.json ./ RUN npm install COPY . . # main port EXPOSE 3000 # metrics port EXPOSE 3001 CMD ["node", "main.js"]