ENV UV_HTTP_TIMEOUT=600

This commit is contained in:
2025-11-07 12:06:36 +08:00
parent b993d162c9
commit 428b5762d2

View File

@@ -13,6 +13,10 @@ USER root
WORKDIR /ragflow
# Set UV HTTP timeout to handle large package downloads (e.g., nvidia-cusolver-cu12)
# Default is 30s, increase to 600s (10 minutes) for large packages
ENV UV_HTTP_TIMEOUT=600
# install dependencies from pyproject.toml
COPY pyproject.toml ./
# https://github.com/astral-sh/uv/issues/10462