# Build stage FROM node:22-alpine AS build-stage WORKDIR /app COPY package*.json ./ RUN npm config set registry https://registry.npmmirror.com && npm install --no-audit --no-fund COPY . . ARG VITE_API_BASE_URL ENV VITE_API_BASE_URL=$VITE_API_BASE_URL RUN npm run build # Production stage FROM nginx:alpine COPY --from=build-stage /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]