From 92aa27caa96d25046bf33e3958bfe076eafec201 Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Fri, 9 Jan 2026 10:10:58 +0800 Subject: [PATCH] mirror --- scripts/images/backend-python/Dockerfile | 2 +- scripts/images/deer-flow-backend/Dockerfile | 2 +- scripts/images/deer-flow-frontend/Dockerfile | 2 +- scripts/images/label-studio/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/images/backend-python/Dockerfile b/scripts/images/backend-python/Dockerfile index e79bcd3..052cc53 100644 --- a/scripts/images/backend-python/Dockerfile +++ b/scripts/images/backend-python/Dockerfile @@ -18,7 +18,7 @@ RUN mkdir -p /root/.m2 && \ RUN apt-get update && \ apt-get install -y git && \ - git clone https://github.com/alibaba/DataX.git + git clone https://gitee.com/alibaba/DataX.git COPY runtime/datax/ DataX/ diff --git a/scripts/images/deer-flow-backend/Dockerfile b/scripts/images/deer-flow-backend/Dockerfile index afb7082..d868e3a 100644 --- a/scripts/images/deer-flow-backend/Dockerfile +++ b/scripts/images/deer-flow-backend/Dockerfile @@ -19,7 +19,7 @@ ENV UV_INDEX_URL="https://mirrors.aliyun.com/pypi/simple/" WORKDIR /app # Copy the application into the container. -RUN git clone https://github.com/ModelEngine-Group/deer-flow.git /app +RUN git clone https://ghproxy.net/https://github.com/ModelEngine-Group/deer-flow.git /app COPY runtime/deer-flow/.env /app/.env COPY runtime/deer-flow/conf.yaml /app/conf.yaml diff --git a/scripts/images/deer-flow-frontend/Dockerfile b/scripts/images/deer-flow-frontend/Dockerfile index 99cb346..67d4a38 100644 --- a/scripts/images/deer-flow-frontend/Dockerfile +++ b/scripts/images/deer-flow-frontend/Dockerfile @@ -4,7 +4,7 @@ FROM node:20-alpine AS deps RUN apk add --no-cache libc6-compat openssl git WORKDIR /app -RUN git clone https://github.com/ModelEngine-Group/deer-flow.git /deer-flow \ +RUN git clone https://ghproxy.net/https://github.com/ModelEngine-Group/deer-flow.git /deer-flow \ && mv /deer-flow/web/* /app \ && rm -rf /deer-flow diff --git a/scripts/images/label-studio/Dockerfile b/scripts/images/label-studio/Dockerfile index ab20f07..70e7ee6 100644 --- a/scripts/images/label-studio/Dockerfile +++ b/scripts/images/label-studio/Dockerfile @@ -4,7 +4,7 @@ ARG POETRY_VERSION=2.1.4 ARG VERSION_OVERRIDE ARG BRANCH_OVERRIDE -ARG GIT_REPO=https://github.com/ModelEngine-Group/Label-Studio.git +ARG GIT_REPO=https://ghproxy.net/https://github.com/ModelEngine-Group/Label-Studio.git ARG GIT_BRANCH=ls-release/1.21.0.wsi ################################ Stage: downloader (Source Code)