FROM node:22-alpine AS builder WORKDIR /app # Install dependencies COPY package.json package-lock.json* ./ RUN npm install # Copy source and build COPY . . RUN npm run build # Runtime - nginx for static serving FROM nginx:alpine # Copy built files COPY --from=builder /app/build /usr/share/nginx/html # Copy nginx config COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]