Harshasnade commited on
Commit
36161f1
·
1 Parent(s): 4f51a47

Fix Dockerfile: Use libgl1 instead of missing libgl1-mesa-glx

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -4,7 +4,7 @@ WORKDIR /app
4
 
5
  # Install system dependencies for OpenCV and GLib
6
  RUN apt-get update && apt-get install -y --no-install-recommends \
7
- libgl1-mesa-glx \
8
  libglib2.0-0 \
9
  && rm -rf /var/lib/apt/lists/*
10
 
 
4
 
5
  # Install system dependencies for OpenCV and GLib
6
  RUN apt-get update && apt-get install -y --no-install-recommends \
7
+ libgl1 \
8
  libglib2.0-0 \
9
  && rm -rf /var/lib/apt/lists/*
10