FROM node:14.13.1-alpine
WORKDIR /usr/src/app
COPY app/ /usr/src/app/
RUN npm install -g
CMD [ "npm", "start" ]
