Dockerfile 151 B

1234567
  1. FROM nginx:alpine as prod
  2. WORKDIR /app/kpt-system-web
  3. COPY ./dist/ /usr/share/nginx/html/
  4. COPY ./nginx.conf /etc/nginx/conf.d/default.conf
  5. EXPOSE 80