abhisonu01 commited on
Commit
39619b7
·
verified ·
1 Parent(s): 39e8740

Fix: Replace obsolete libgl1-mesa-glx with libgl1 for Debian Trixie

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -2,7 +2,7 @@ FROM python:3.9-slim
2
 
3
  # Install system dependencies
4
  RUN apt-get update && apt-get install -y \
5
- libgl1-mesa-glx \
6
  libglib2.0-0 \
7
  && rm -rf /var/lib/apt/lists/*
8
 
 
2
 
3
  # Install system dependencies
4
  RUN apt-get update && apt-get install -y \
5
+ libgl1 \
6
  libglib2.0-0 \
7
  && rm -rf /var/lib/apt/lists/*
8