You've already forked DataMate
- 将 frontend Dockerfile 中的基础镜像从 gcr.io 切换到 gcr.nju.edu.cn - 更新 offline Dockerfile 中的 nodejs20-debian12 镜像源 - 修改 export-cache.sh 脚本中的基础镜像列表为南京大学镜像 - 更新 Makefile.offline.mk 中的镜像拉取地址为本地镜像源 - 优化 export-cache.sh 脚本的格式和输出信息 - 添加缓存导出过程中的警告处理机制
76 lines
2.2 KiB
Docker
76 lines
2.2 KiB
Docker
# 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"]
|