Commit 1f2631a8 authored by Pawel Ziecina's avatar Pawel Ziecina Committed by GitHub
Browse files

fix(container): add missing common dependencies to vllm_nixl container (#32)


Co-authored-by: default avatarptarasiewiczNV <104908264+ptarasiewiczNV@users.noreply.github.com>
parent e1ae9aa0
...@@ -157,6 +157,10 @@ RUN mkdir /opt/dynemo && \ ...@@ -157,6 +157,10 @@ RUN mkdir /opt/dynemo && \
ENV VIRTUAL_ENV=/opt/dynemo/venv ENV VIRTUAL_ENV=/opt/dynemo/venv
ENV PATH="${VIRTUAL_ENV}/bin:${PATH}" ENV PATH="${VIRTUAL_ENV}/bin:${PATH}"
# Common dependencies
RUN --mount=type=bind,source=./container/deps/requirements.txt,target=/tmp/requirements.txt \
uv pip install --requirement /tmp/requirements.txt
# Install patched vllm - keep this early in Dockerfile to avoid # Install patched vllm - keep this early in Dockerfile to avoid
# rebuilds from unrelated source code changes # rebuilds from unrelated source code changes
ARG VLLM_REF="v0.7.2" ARG VLLM_REF="v0.7.2"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment