FROM node:16 as node COPY . /app WORKDIR /app RUN npm install RUN npm run build FROM nginx:1.22 as nginx COPY --from=node /app/dist /app COPY --from=node /app/nginx.conf /etc/nginx/nginx.conf