"deploy/cloud/helm/vscode:/vscode.git/clone" did not exist on "19a77ae7d5ef7418828b47888e54deda7d3cfac9"
Unverified Commit 177d662f authored by Dmitry Tokarev's avatar Dmitry Tokarev Committed by GitHub
Browse files

fix: Dockerfile.sglang - Fixed sglang and dynamo wheels installaiton in ru… (#2537)

parent c12fe501
......@@ -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
......
......@@ -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 = [
......
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