"docs/backends/vllm/multi-node.md" did not exist on "f00d700ee4c5be1ad30f0c4279fb4093e398b51d"
Unverified Commit 7fc94da6 authored by ishandhanani's avatar ishandhanani Committed by GitHub
Browse files

fix(container): update sgl dockerfile install commands (#2194)

parent b69c5079
......@@ -446,7 +446,7 @@ 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] --find-links wheelhouse
RUN uv pip install "ai-dynamo[sglang]" --pre --find-links wheelhouse
# Copy launch banner
RUN --mount=type=bind,source=./container/launch_message.txt,target=/workspace/launch_message.txt \
......
......@@ -121,7 +121,7 @@ ENV CARGO_BUILD_JOBS=${CARGO_BUILD_JOBS:-16}
RUN cargo build --release
RUN cd lib/bindings/python && pip install --break-system-packages -e . && cd ../../..
RUN pip install --break-system-packages -e .
RUN pip install --break-system-packages .
RUN wget --tries=3 --waitretry=5 https://github.com/nats-io/nats-server/releases/download/v2.10.28/nats-server-v2.10.28-${ARCH}.deb && \
dpkg -i nats-server-v2.10.28-${ARCH}.deb && rm nats-server-v2.10.28-${ARCH}.deb
......
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