# ============================================ # BraceIQMed Frontend - React + Vite + nginx # ============================================ # Stage 1: Build the React app FROM node:20-alpine AS builder WORKDIR /app # Copy package files COPY package*.json ./ # Install dependencies RUN npm ci # Copy source code COPY . . # Build the app (uses relative API URLs) ENV VITE_API_URL="" RUN npm run build # Stage 2: Serve with nginx FROM nginx:alpine # Copy built files COPY --from=builder /app/dist /usr/share/nginx/html # Copy nginx config COPY nginx.conf /etc/nginx/conf.d/default.conf # Create log directory RUN mkdir -p /var/log/nginx EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]