From 264faecb0dd41aaf4a2734baf06d8c7d03ac969b Mon Sep 17 00:00:00 2001 From: "tao.chen" <93983997+taochen-ct@users.noreply.github.com> Date: Wed, 5 Aug 2026 17:49:53 +0800 Subject: [PATCH] fix: python3.10 build error --- runtime/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/Dockerfile b/runtime/Dockerfile index 1934dd5..dc1c053 100644 --- a/runtime/Dockerfile +++ b/runtime/Dockerfile @@ -14,7 +14,7 @@ RUN mkdir -p /root/.jupyter/custom /app/.venv/share/jupyter/custom && \ RUN uv venv --python 3.8 /opt/venv/python3.8 && \ UV_DEFAULT_INDEX="https://pypi.tuna.tsinghua.edu.cn/simple/" uv pip install --python /opt/venv/python3.8/bin/python ipykernel && \ - /opt/venv/python3.8/bin/python -m ipykernel install --prefix=/app/.venv --name=python38 --display-name="python3.8" \ + /opt/venv/python3.8/bin/python -m ipykernel install --prefix=/app/.venv --name=python38 --display-name="python3.8" RUN uv venv --python 3.10 /opt/venv/python3.10 && \ UV_DEFAULT_INDEX="https://pypi.tuna.tsinghua.edu.cn/simple/" uv pip install --python /opt/venv/python3.10/bin/python ipykernel && \