FROM node:latest as build-stageWORKDIR /appCOPY package*.json ./RUN npm installCOPY ./ .RUN npm run buildFROM nginx as production-stageRUN mkdir /appCOPY --from=build-stage /app/dist /appCOPY nginx.conf /etc/nginx/nginx.conf