# deer-flow-frontend Dockerfile 离线版本 # 修改点: 使用本地 deer-flow 源码替代 git clone ##### DEPENDENCIES FROM node:20-alpine AS deps RUN apk add --no-cache libc6-compat openssl WORKDIR /app # 离线模式: 本地 deer-flow 路径 ARG RESOURCES_DIR=./build-cache/resources ARG DEERFLOW_DIR=${RESOURCES_DIR}/deer-flow # 复制本地 deer-flow 源码 COPY ${DEERFLOW_DIR}/web /app # 配置 npm 淘宝镜像并安装依赖 RUN npm config set registry https://registry.npmmirror.com && \ if [ -f yarn.lock ]; then yarn config set registry https://registry.npmmirror.com && yarn --frozen-lockfile; \ elif [ -f package-lock.json ]; then npm ci; \ elif [ -f pnpm-lock.yaml ]; then npm install -g pnpm && pnpm config set registry https://registry.npmmirror.com && pnpm i; \ else echo "Lockfile not found." && exit 1; \ fi ##### BUILDER FROM node:20-alpine AS builder RUN apk add --no-cache git WORKDIR /app ARG NEXT_PUBLIC_API_URL="/deer-flow-backend" # 离线模式: 复制本地源码 ARG RESOURCES_DIR=./build-cache/resources ARG DEERFLOW_DIR=${RESOURCES_DIR}/deer-flow COPY ${DEERFLOW_DIR} /deer-flow RUN cd /deer-flow \ && mv /deer-flow/web/* /app \ && rm -rf /deer-flow COPY --from=deps /app/node_modules ./node_modules ENV NEXT_TELEMETRY_DISABLED=1 # 配置 npm 淘宝镜像 RUN npm config set registry https://registry.npmmirror.com && \ if [ -f yarn.lock ]; then yarn config set registry https://registry.npmmirror.com && SKIP_ENV_VALIDATION=1 yarn build; \ elif [ -f package-lock.json ]; then SKIP_ENV_VALIDATION=1 npm run build; \ elif [ -f pnpm-lock.yaml ]; then npm install -g pnpm && pnpm config set registry https://registry.npmmirror.com && SKIP_ENV_VALIDATION=1 pnpm run build; \ else echo "Lockfile not found." && exit 1; \ fi ##### RUNNER FROM gcr.nju.edu.cn/distroless/nodejs20-debian12 AS runner WORKDIR /app ENV NODE_ENV=production ENV NEXT_TELEMETRY_DISABLED=1 COPY --from=builder /app/next.config.js ./ COPY --from=builder /app/public ./public COPY --from=builder /app/package.json ./package.json COPY --from=builder /app/.next/standalone ./ COPY --from=builder /app/.next/static ./.next/static EXPOSE 3000 ENV PORT=3000 CMD ["server.js"]