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 @@ -449,6 +449,16 @@ COPY --from=wheel_builder /workspace/dist/*.whl wheelhouse/
449
449
COPY --from=base /workspace/wheels/nixl/*.whl wheelhouse/
450
450
RUN uv pip install "ai-dynamo[sglang]" --pre --find-links wheelhouse
451
451
452
+ # Common dependencies
453
+ # TODO: Remove extra install and use pyproject.toml to define all dependencies
454
+ RUN --mount=type=bind,source=./container/deps/requirements.txt,target=/tmp/requirements.txt \
455
+ uv pip install --requirement /tmp/requirements.txt
456
+
457
+ # Install test dependencies
458
+ # TODO: Remove this once we have a functional CI image built on top of the runtime image
459
+ RUN --mount=type=bind,source=./container/deps/requirements.test.txt,target=/tmp/requirements.txt \
460
+ uv pip install --requirement /tmp/requirements.txt
461
+
452
462
# Copy launch banner
453
463
RUN --mount=type=bind,source=./container/launch_message.txt,target=/workspace/launch_message.txt \
454
464
sed '/^#\s/d' /workspace/launch_message.txt > ~/.launch_screen && \
You can’t perform that action at this time.
0 commit comments