Skip to content

Commit 0a690ea

Browse files
committed
Remove --no-index as argument isn't required for installing nixl
1 parent 6b30373 commit 0a690ea

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

container/Dockerfile.vllm

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,10 +503,12 @@ RUN apt-get update && \
503503
uv venv $VIRTUAL_ENV --python 3.12 && \
504504
echo "source $VIRTUAL_ENV/bin/activate" >> ~/.bashrc
505505

506-
# Copy NIXL and Dynmao wheels into wheelhouse
506+
# Install the wheels and symlink executables to /usr/local/bin so dynamo components can use them
507+
# Dynamo components currently do not have the VIRTUAL_ENV in their PATH, so we need to symlink the executables
508+
#Copy NIXL and Dynmao wheels into wheelhouse
507509
COPY --from=wheel_builder /workspace/dist/*.whl wheelhouse/
508510
RUN uv pip install ai-dynamo[vllm] --find-links wheelhouse && \
509-
uv pip install nixl --no-index --find-links wheelhouse && \
511+
uv pip install nixl --find-links wheelhouse && \
510512
ln -sf $VIRTUAL_ENV/bin/* /usr/local/bin/ && \
511513
rm -r wheelhouse
512514

0 commit comments

Comments
 (0)