From ed5910095b9c268d59e89ed91a9f45e2dcef94c4 Mon Sep 17 00:00:00 2001 From: hailin Date: Wed, 2 Jul 2025 14:57:24 +0800 Subject: [PATCH] . --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6b0b570..68fad05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -91,5 +91,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ COPY --from=builder-extras /wheels /tmp/wheels RUN python3 -m pip install --no-cache-dir /tmp/wheels/* && rm -rf /tmp/wheels +# 安装运行时漏掉的依赖 +RUN python3 -m pip install --no-cache-dir pydantic + # 仅做 CI / CPU 自检 —— 输出帮助后退出 0 CMD ["python3", "-m", "sglang.launch_server", "--help"]