From 15140e6f7efae4376954bb469eca16602ba60b0a Mon Sep 17 00:00:00 2001 From: "yasong.wang" Date: Tue, 28 Apr 2026 11:31:51 +0800 Subject: [PATCH] fix extra deps in docker Signed-off-by: yasong.wang --- src/components/recipes/CommandBuilder.jsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/components/recipes/CommandBuilder.jsx b/src/components/recipes/CommandBuilder.jsx index 81ff06616..b10113dd5 100644 --- a/src/components/recipes/CommandBuilder.jsx +++ b/src/components/recipes/CommandBuilder.jsx @@ -832,8 +832,14 @@ export function CommandBuilder({ recipe, strategies, taxonomy }) { altCudaSuffix={altCudaSuffix} /> - {/* ── Dependencies / extra install ── */} - {dependencies.length > 0 && } + {/* ── Dependencies / extra install ── + Hidden in docker mode: today every entry is a host-level + `pip install` / `bash install_*.sh`, which doesn't apply when + vLLM ships as a container image. Revisit if a dep ever needs + to run inside the container. */} + {effectiveInstallMode !== "docker" && dependencies.length > 0 && ( + + )} {/* ── VRAM shortfall warning (single-node only) ── */} {vramShortfall && (