Dockerfile 148 B

123456
  1. FROM nginx:stable-alpine as production-stage
  2. COPY --from=build-stage /app/dist /usr/share/nginx/html
  3. EXPOSE 80
  4. CMD ["nginx", "-g", "daemon off;"]