[model-gateway] change sgl-router to sgl-model-gateway (#14312)

This commit is contained in:
Simo Lin
2025-12-05 12:04:48 -08:00
committed by GitHub
parent 1ea6b740a7
commit 49dfa1d891
431 changed files with 86 additions and 93 deletions
+2 -2
View File
@@ -52,7 +52,7 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
COPY --from=local_src /src /opt/sglang
# working directory
WORKDIR /opt/sglang/sgl-router
WORKDIR /opt/sglang/sgl-model-gateway
# install maturin and build the wheel with vendored OpenSSL
RUN uv pip install maturin \
@@ -66,7 +66,7 @@ RUN uv pip install maturin \
FROM base AS router-image
# Copy the built package from the build image
COPY --from=build-image /opt/sglang/sgl-router/bindings/python/dist/*.whl dist/
COPY --from=build-image /opt/sglang/sgl-model-gateway/bindings/python/dist/*.whl dist/
# Build the package and install
RUN uv pip install --force-reinstall dist/*.whl