# ── 1단계: 빌드 ─────────────────────────────────────────────────────────────── FROM node:20-alpine AS builder WORKDIR /app COPY package*.json ./ RUN npm ci COPY . . ARG VITE_API_BASE_URL=/api ARG VITE_APP_VERSION= ENV VITE_API_BASE_URL=${VITE_API_BASE_URL} ENV VITE_APP_VERSION=${VITE_APP_VERSION} RUN npm run build # ── 2단계: 서비스 ───────────────────────────────────────────────────────────── FROM nginx:1.27-alpine AS production COPY --from=builder /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf COPY nginx-locations.inc /etc/nginx/gc-locations.inc COPY nginx-https.conf /etc/nginx/nginx-https.conf COPY docker-entrypoint.d/40-enable-https.sh /docker-entrypoint.d/40-enable-https.sh RUN chmod +x /docker-entrypoint.d/40-enable-https.sh EXPOSE 80 443 CMD ["nginx", "-g", "daemon off;"]