FROM node
RUN mkdir app
COPY . /app/

# Install npm production packages 
WORKDIR /app
RUN npm install

CMD ["npm", "run", "start"]