1 2 3 4 5 6
FROM node:16-alpine WORKDIR /app COPY package.json . RUN npm install COPY . . RUN npm run build