From edb8bdda8e487d5e2ac33c988a671c6cd8186ae0 Mon Sep 17 00:00:00 2001 From: puke <1129090915@qq.com> Date: Fri, 14 Nov 2025 00:14:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96dockerfile=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 154ea2e..86d886c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,10 +53,9 @@ COPY pixelle_video ./pixelle_video # Set longer timeout and reduce concurrent downloads for stability RUN if [ "$USE_CN_MIRROR" = "true" ] && [ "$UV_INDEX_URL" = "https://pypi.org/simple" ]; then \ export UV_HTTP_TIMEOUT=300 && \ - export UV_CONCURRENT_DOWNLOADS=2 && \ - uv sync --frozen --no-dev --index-url https://pypi.tuna.tsinghua.edu.cn/simple/ || \ uv sync --frozen --no-dev --index-url https://mirrors.aliyun.com/pypi/simple/; \ else \ + export UV_HTTP_TIMEOUT=300 && \ uv sync --frozen --no-dev --index-url $UV_INDEX_URL; \ fi