From: simevo Date: Thu, 14 Aug 2025 15:45:27 +0000 (+0200) Subject: devops : fix compile bug when the BASE_CUDA_DEV_CONTAINER is based on Ubuntu 24.04... X-Git-Tag: upstream/0.0.6199~33 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=e4e915912cfd2ee15c5a4a0074813232134892f6;p=pkg%2Fggml%2Fsources%2Fllama.cpp devops : fix compile bug when the BASE_CUDA_DEV_CONTAINER is based on Ubuntu 24.04 (#15005) fixes #15004 Co-authored-by: Paolo Greppi --- diff --git a/.devops/cuda.Dockerfile b/.devops/cuda.Dockerfile index 94f14339..f9dc7f31 100644 --- a/.devops/cuda.Dockerfile +++ b/.devops/cuda.Dockerfile @@ -60,8 +60,7 @@ RUN apt-get update \ git \ python3 \ python3-pip \ - && pip install --upgrade pip setuptools wheel \ - && pip install -r requirements.txt \ + && pip install --break-system-packages -r requirements.txt \ && apt autoremove -y \ && apt clean -y \ && rm -rf /tmp/* /var/tmp/* \