FROM node:13 WORKDIR /app COPY package.json . RUN npm install RUN npm run postinstall COPY . . CMD npm start