FROM node:18-alpine3.16 as build-stage WORKDIR /app COPY package*.json ./ RUN yarn install COPY . . RUN yarn build FROM nginx:stable-alpine as production-stage COPY --from=build-stage /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/ EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]