From e4e915912cfd2ee15c5a4a0074813232134892f6 Mon Sep 17 00:00:00 2001 From: simevo Date: Thu, 14 Aug 2025 17:45:27 +0200 Subject: [PATCH] devops : fix compile bug when the BASE_CUDA_DEV_CONTAINER is based on Ubuntu 24.04 (#15005) fixes #15004 Co-authored-by: Paolo Greppi --- .devops/cuda.Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.devops/cuda.Dockerfile b/.devops/cuda.Dockerfile index 94f143397..f9dc7f316 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/* \