File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -454,6 +454,16 @@ COPY --from=base /workspace/wheels/nixl/*.whl wheelhouse/
454454RUN uv pip install "flashinfer-python==0.2.9rc2" --prerelease=allow && \
455455 uv pip install "ai-dynamo[sglang]" --find-links wheelhouse
456456
457+ # Common dependencies
458+ # TODO: Remove extra install and use pyproject.toml to define all dependencies
459+ RUN --mount=type=bind,source=./container/deps/requirements.txt,target=/tmp/requirements.txt \
460+ uv pip install --requirement /tmp/requirements.txt
461+
462+ # Install test dependencies
463+ # TODO: Remove this once we have a functional CI image built on top of the runtime image
464+ RUN --mount=type=bind,source=./container/deps/requirements.test.txt,target=/tmp/requirements.txt \
465+ uv pip install --requirement /tmp/requirements.txt
466+
457467# Copy launch banner
458468RUN --mount=type=bind,source=./container/launch_message.txt,target=/workspace/launch_message.txt \
459469 sed '/^#\s/d' /workspace/launch_message.txt > ~/.launch_screen && \
You can’t perform that action at this time.
0 commit comments