SondosM commited on
Commit
df998c4
·
verified ·
1 Parent(s): c038c49

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -1,8 +1,10 @@
1
  FROM python:3.10-slim
2
 
3
- # Install system libraries for OpenCV and OpenGL
4
  RUN apt-get update && apt-get install -y \
5
- libgl1-mesa-glx \
 
 
6
  libglib2.0-0 \
7
  git \
8
  && rm -rf /var/lib/apt/lists/*
 
1
  FROM python:3.10-slim
2
 
3
+ # Install updated system libraries for OpenCV and OpenGL
4
  RUN apt-get update && apt-get install -y \
5
+ libgl1 \
6
+ libglx-mesa0 \
7
+ libegl1-mesa \
8
  libglib2.0-0 \
9
  git \
10
  && rm -rf /var/lib/apt/lists/*