fix: replace libgl1-mesa-glx with libgl1 for Debian Bookworm

This commit is contained in:
ShootTracker Deploy
2026-04-30 22:52:52 +02:00
parent 2578cb6ec2
commit d5fa458cff
+3 -3
View File
@@ -3,13 +3,13 @@
FROM python:3.11-slim 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 \ RUN apt-get update && apt-get install -y --no-install-recommends \
libglib2.0-0 \ libglib2.0-0 \
libsm6 \ libsm6 \
libxext6 \ libxext6 \
libxrender-dev \ libxrender1 \
libgl1-mesa-glx \ libgl1 \
libgomp1 \ libgomp1 \
wget \ wget \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*