add complete parent-bff implementation including: - GraphQL endpoint with depth/cost validation - ChildGuard越权校验 with redis cache and singleflight - parallel orchestration with partial failure fallback - three-level cache fallback strategy (Redis + LRU + downstream) - Kafka consumer for cache invalidation and notification push - opossum circuit breaker for downstream services - Prometheus metrics and SLO alerts - Helm chart for k8s deployment with multi-environment configs - Grafana dashboard for observability - complete unit and integration tests
20 lines
451 B
Docker
20 lines
451 B
Docker
# Build stage
|
|
FROM node:20-alpine AS builder
|
|
WORKDIR /app
|
|
RUN npm install -g pnpm
|
|
COPY package.json pnpm-lock.yaml* ./
|
|
RUN pnpm install --frozen-lockfile
|
|
COPY tsconfig.json nest-cli.json ./
|
|
COPY src ./src
|
|
RUN pnpm build
|
|
|
|
# Runtime stage
|
|
FROM node:20-alpine
|
|
WORKDIR /app
|
|
RUN npm install -g pnpm
|
|
COPY package.json pnpm-lock.yaml* ./
|
|
RUN pnpm install --prod --frozen-lockfile
|
|
COPY --from=builder /app/dist ./dist
|
|
EXPOSE 3010
|
|
CMD ["node", "dist/main.js"]
|