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