# Stage 1: Build Vite frontend FROM node:22-alpine AS build WORKDIR /app/frontend COPY frontend/package*.json ./ RUN npm ci || npm install COPY frontend ./ RUN npm run build # Stage 2: Production Nginx server FROM nginx:alpine COPY --from=build /app/frontend/dist /usr/share/nginx/html COPY frontend/nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]