Dockerfile 141 B

1234567
  1. FROM nginx:alpine
  2. WORKDIR /app
  3. COPY dist /app
  4. COPY nginx/nginx.conf /etc/nginx/
  5. COPY nginx/conf.d/default.conf /etc/nginx/conf.d
  6. EXPOSE 8080