File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff 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
507509COPY --from=wheel_builder /workspace/dist/*.whl wheelhouse/
508510RUN 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
You can’t perform that action at this time.
0 commit comments