Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
177d662f
Unverified
Commit
177d662f
authored
Aug 19, 2025
by
Dmitry Tokarev
Committed by
GitHub
Aug 19, 2025
Browse files
fix: Dockerfile.sglang - Fixed sglang and dynamo wheels installaiton in ru… (#2537)
parent
c12fe501
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
container/Dockerfile.sglang
container/Dockerfile.sglang
+6
-1
lib/bindings/python/pyproject.toml
lib/bindings/python/pyproject.toml
+1
-1
No files found.
container/Dockerfile.sglang
View file @
177d662f
...
...
@@ -472,7 +472,12 @@ RUN apt-get update && \
COPY --from=ci_minimum /workspace/target/release/metrics /usr/local/bin/metrics
COPY --from=wheel_builder /workspace/dist/*.whl wheelhouse/
COPY --from=base /workspace/wheels/nixl/*.whl wheelhouse/
RUN uv pip install "ai-dynamo[sglang]" --pre --find-links wheelhouse
ARG SGLANG_VERSION
RUN uv pip install \
/workspace/wheelhouse/ai_dynamo_runtime*cp312*.whl \
/workspace/wheelhouse/ai_dynamo*any.whl \
/workspace/wheelhouse/nixl*.whl \
"sglang[all]==${SGLANG_VERSION}"
# Common dependencies
# TODO: Remove extra install and use pyproject.toml to define all dependencies
...
...
lib/bindings/python/pyproject.toml
View file @
177d662f
...
...
@@ -26,7 +26,7 @@ license = { text = "Apache-2.0" }
license-files
=
["LICENSE"]
requires-python
=
">=3.10"
dependencies
=
[
"pydantic>=2.10.6,<2.11.
0
"
,
"pydantic>=2.10.6,<
=
2.11.
7
"
,
"uvloop>=0.21.0"
,
]
classifiers
=
[
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment