From 8afba0bcfdcee3f7e19acfd675c72c639f85fa9d Mon Sep 17 00:00:00 2001 From: Harrison King Saturley-Hall Date: Thu, 4 Sep 2025 15:14:30 -0400 Subject: [PATCH] fix: NIXL wheel missing from system packages in dev env Signed-off-by: Harrison King Saturley-Hall --- container/Dockerfile.trtllm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/container/Dockerfile.trtllm b/container/Dockerfile.trtllm index 9d846adfca..6bf259e2a3 100644 --- a/container/Dockerfile.trtllm +++ b/container/Dockerfile.trtllm @@ -228,7 +228,8 @@ RUN if [ "$ARCH" = "arm64" ]; then \ fi && \ # Install the wheel # TODO: Move NIXL wheel install to the wheel_builder stage - uv pip install /workspace/wheels/nixl/*.whl + uv pip install /workspace/wheels/nixl/*.whl && \ + pip install /workspace/wheels/nixl/*.whl ################################### ####### WHEEL BUILD STAGE #########