From 45fb2719cf0f8300ca355a222a15b9919ad810cf Mon Sep 17 00:00:00 2001 From: buua436 Date: Tue, 6 Jan 2026 19:27:46 +0800 Subject: [PATCH] Fix: update uv python installation to version 3.12 in Dockerfile (#12464) ### What problem does this PR solve? issue: https://github.com/infiniflow/ragflow/issues/12440 change: update uv python installation to version 3.12 in Dockerfile ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e4defbf31..aaec6f16e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,7 +67,7 @@ RUN --mount=type=bind,from=infiniflow/ragflow_deps:latest,source=/,target=/deps tar xzf /deps/uv-x86_64-unknown-linux-gnu.tar.gz \ && cp uv-x86_64-unknown-linux-gnu/* /usr/local/bin/ \ && rm -rf uv-x86_64-unknown-linux-gnu \ - && uv python install 3.11 + && uv python install 3.12 ENV PYTHONDONTWRITEBYTECODE=1 DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 ENV PATH=/root/.local/bin:$PATH