t29mato Claude Opus 4.6 commited on
Commit
c220d72
·
1 Parent(s): c6b46e4

Fix apt package: libgl1-mesa-glx -> libgl1 for Debian Trixie

Browse files

python: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>

Files changed (1) hide show
  1. 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-mesa-glx \
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++ \