From d5fa458cff0f988ece8bd56b1bd96fabc9ab86a8 Mon Sep 17 00:00:00 2001 From: ShootTracker Deploy Date: Thu, 30 Apr 2026 22:52:52 +0200 Subject: [PATCH] fix: replace libgl1-mesa-glx with libgl1 for Debian Bookworm --- ai-service/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ai-service/Dockerfile b/ai-service/Dockerfile index 20a5c8b..e533ce6 100644 --- a/ai-service/Dockerfile +++ b/ai-service/Dockerfile @@ -3,13 +3,13 @@ FROM python:3.11-slim -# Dépendances système pour OpenCV +# Dépendances système pour OpenCV (compatibles Debian Bookworm) RUN apt-get update && apt-get install -y --no-install-recommends \ libglib2.0-0 \ libsm6 \ libxext6 \ - libxrender-dev \ - libgl1-mesa-glx \ + libxrender1 \ + libgl1 \ libgomp1 \ wget \ && rm -rf /var/lib/apt/lists/*