You've already forked DataMate
- 新增 build-offline.sh 脚本实现无网环境构建 - 添加离线版 Dockerfiles 使用本地资源替代网络下载 - 创建 export-cache.sh 脚本在有网环境预下载依赖 - 集成 Makefile.offline.mk 提供便捷的离线构建命令 - 添加详细的离线构建文档和故障排查指南 - 实现基础镜像、BuildKit 缓存和外部资源的一键打包
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.io/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"]
|