# Build Stage FROM node:18-alpine as builder WORKDIR /app RUN npm config set registry https://registry.npmmirror.com COPY package*.json ./ RUN npm ci COPY . . RUN npm run build # Production Stage FROM nginx:alpine # Copy built assets from builder stage COPY --from=builder /app/dist /usr/share/nginx/html # Copy custom nginx config if needed (using default for now) # COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]