FROM node:14.13.1 COPY . /app WORKDIR /app COPY package.json /app RUN npm install COPY . /app CMD ["npm", "start"]