Dhiraj20 commited on
Commit
ff994de
·
1 Parent(s): 817782f

Fix Debian package error in Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -5,7 +5,7 @@ WORKDIR /app
5
  # Install system dependencies required by PyMuPDF and others
6
  RUN apt-get update && apt-get install -y \
7
  build-essential \
8
- libgl1-mesa-glx \
9
  libglib2.0-0 \
10
  && rm -rf /var/lib/apt/lists/*
11
 
 
5
  # Install system dependencies required by PyMuPDF and others
6
  RUN apt-get update && apt-get install -y \
7
  build-essential \
8
+ libgl1 \
9
  libglib2.0-0 \
10
  && rm -rf /var/lib/apt/lists/*
11