Spaces:
Runtime error
Runtime error
Fix apt package: libgl1-mesa-glx -> libgl1 for Debian Trixie
Browse filespython:3.10-slim now uses Debian Trixie where libgl1-mesa-glx
has been replaced by libgl1.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -2,7 +2,7 @@ FROM python:3.10-slim
|
|
| 2 |
|
| 3 |
# System dependencies (gcc/g++ needed for pycocotools)
|
| 4 |
RUN apt-get update && apt-get install -y \
|
| 5 |
-
libgl1
|
| 6 |
libglib2.0-0 \
|
| 7 |
gcc \
|
| 8 |
g++ \
|
|
|
|
| 2 |
|
| 3 |
# System dependencies (gcc/g++ needed for pycocotools)
|
| 4 |
RUN apt-get update && apt-get install -y \
|
| 5 |
+
libgl1 \
|
| 6 |
libglib2.0-0 \
|
| 7 |
gcc \
|
| 8 |
g++ \
|