FROM node:22-alpine AS builder ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" RUN corepack enable WORKDIR /app COPY package.json pnpm-lock.yaml ./ RUN pnpm install --frozen-lockfile COPY . . ARG VITE_API_BASE=http://localhost:5150 ARG VITE_FRONTEND_BASE_URL=http://localhost:4321 ARG VITE_ADMIN_BASENAME= ENV VITE_API_BASE=${VITE_API_BASE} ENV VITE_FRONTEND_BASE_URL=${VITE_FRONTEND_BASE_URL} ENV VITE_ADMIN_BASENAME=${VITE_ADMIN_BASENAME} RUN pnpm build FROM nginx:1.27-alpine AS runner COPY nginx.conf /etc/nginx/conf.d/default.conf COPY --from=builder /app/dist /usr/share/nginx/html COPY docker-entrypoint.d/40-runtime-config.sh /docker-entrypoint.d/40-runtime-config.sh RUN chmod +x /docker-entrypoint.d/40-runtime-config.sh EXPOSE 80 HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 CMD wget -q -O /dev/null http://127.0.0.1/healthz || exit 1 CMD ["nginx", "-g", "daemon off;"]