This commit is contained in:
2026-01-09 10:10:58 +08:00
parent adb90bbf10
commit 92aa27caa9
4 changed files with 4 additions and 4 deletions

View File

@@ -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/

View File

@@ -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

View File

@@ -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

View File

@@ -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)