Skip to content

Commit 5ae6c66

Browse files
authored
fix: enable block manager feature only for py3.12 build (#1393) (#1402)
1 parent 8bcb9a3 commit 5ae6c66

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

container/Dockerfile.vllm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,8 +384,9 @@ RUN uv build --wheel --out-dir /workspace/dist && \
384384
uv pip install maturin[patchelf] && \
385385
maturin build --release --features block-manager --out /workspace/dist && \
386386
if [ "$RELEASE_BUILD" = "true" ]; then \
387-
uv run --python 3.11 maturin build --release --features block-manager --out /workspace/dist && \
388-
uv run --python 3.10 maturin build --release --features block-manager --out /workspace/dist; \
387+
# do not enable KVBM feature, ensure compatibility with lower glibc
388+
uv run --python 3.11 maturin build --release --out /workspace/dist && \
389+
uv run --python 3.10 maturin build --release --out /workspace/dist; \
389390
fi
390391

391392
#######################################

0 commit comments

Comments
 (0)