Fix Docker build failure due to outdated ipex-llm pip index URL (#12976)

This commit is contained in:
Shaojun Liu 2025-03-17 09:50:09 +08:00 committed by GitHub
parent 03c9024209
commit 760abc47aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -52,7 +52,7 @@ RUN set -eux && \
dpkg -i *.deb && \
#
# Install Intel PyTorch extension for LLM inference
pip install --pre --upgrade ipex-llm[xpu_2.6] --extra-index-url https://download.pytorch.org/whl/test/xpu && \
pip install --pre --upgrade ipex-llm[xpu_2.6] --extra-index-url https://download.pytorch.org/whl/xpu && \
#
# Build torch-ccl
mkdir /build && \