From f63ddc59b5a5a12600e2664dd003d219ca3ad28e Mon Sep 17 00:00:00 2001 From: "tao.chen" <93983997+taochen-ct@users.noreply.github.com> Date: Wed, 5 Aug 2026 19:16:09 +0800 Subject: [PATCH] update: remove jupyter env install kernel /opt/venv/python3.12 --- runtime/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runtime/Dockerfile b/runtime/Dockerfile index b791cb3..ed5c333 100644 --- a/runtime/Dockerfile +++ b/runtime/Dockerfile @@ -13,8 +13,7 @@ RUN mkdir -p /root/.jupyter/custom /app/.venv/share/jupyter/custom && \ cp /root/.jupyter/custom/custom.css /app/.venv/share/jupyter/custom/custom.css RUN uv venv --python 3.12 /opt/venv/python3.12 && \ - UV_DEFAULT_INDEX="https://pypi.tuna.tsinghua.edu.cn/simple/" uv pip install --python /opt/venv/python3.12/bin/python -r runtime/requirements-py312 && \ - /opt/venv/python3.12/bin/python -m ipykernel install --prefix=/opt/venv/python3.12 --name=python312 --display-name="python3.12" + UV_DEFAULT_INDEX="https://pypi.tuna.tsinghua.edu.cn/simple/" uv pip install --python /opt/venv/python3.12/bin/python -r runtime/requirements-py312 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 -r runtime/requirements-py38 && \