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 && (