Fix: use 'pip wheel' instead of 'uv pip wheel' (uv has no wheel subcommand)

This commit is contained in:
2026-04-02 20:22:11 +00:00
parent 9da93ec625
commit 8f870921f8

View File

@@ -122,7 +122,7 @@ RUN apt-get update && apt-get install -y build-essential cmake gcc && \
FLASH_ATTENTION_FORCE_BUILD="TRUE" \
FLASH_ATTENTION_FORCE_CXX11_ABI="FALSE" \
FLASH_ATTENTION_SKIP_CUDA_BUILD="FALSE" \
uv pip wheel . -v --no-deps -w ./wheels/ && \
pip wheel . -v --no-deps -w ./wheels/ && \
cp wheels/*.whl /wheels/
FROM build-base AS build-vllm