# Stage 1: Build FROM node:20-alpine AS builder WORKDIR /app COPY package*.json ./ RUN npm install --legacy-peer-deps COPY . . RUN npm run build # Stage 2: Serve with nginx FROM nginx:alpine # Remove default nginx static files RUN rm -rf /usr/share/nginx/html/* # Copy built assets from the builder stage COPY --from=builder /app/dist /usr/share/nginx/html # Copy custom nginx config if needed # COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]