Unverified Commit c0a88df7 authored by Amr Mahdi's avatar Amr Mahdi Committed by GitHub
Browse files

[docker] Allow kv_connectors install to fail on arm64 (#30806)


Signed-off-by: default avatarAmr Mahdi <amrmahdi@meta.com>
parent e087fbc3
......@@ -621,7 +621,7 @@ ENV UV_HTTP_TIMEOUT=500
RUN --mount=type=cache,target=/root/.cache/uv \
--mount=type=bind,source=requirements/kv_connectors.txt,target=/tmp/kv_connectors.txt,ro \
if [ "$INSTALL_KV_CONNECTORS" = "true" ]; then \
uv pip install --system -r /tmp/kv_connectors.txt; \
uv pip install --system -r /tmp/kv_connectors.txt || true; \
fi
ENV VLLM_USAGE_SOURCE production-docker-image
......
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