Alfonso Velasco commited on
Commit
f7708ca
·
1 Parent(s): c9f61a8
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,11 +1,11 @@
1
  FROM python:3.9
2
 
3
- # Install system dependencies INCLUDING TESSERACT
4
  RUN apt-get update && apt-get install -y \
5
  tesseract-ocr \
6
  tesseract-ocr-eng \
7
  poppler-utils \
8
- libgl1-mesa-glx \
9
  libglib2.0-0 \
10
  libsm6 \
11
  libxext6 \
 
1
  FROM python:3.9
2
 
3
+ # Install system dependencies with the correct package names
4
  RUN apt-get update && apt-get install -y \
5
  tesseract-ocr \
6
  tesseract-ocr-eng \
7
  poppler-utils \
8
+ libgl1 \
9
  libglib2.0-0 \
10
  libsm6 \
11
  libxext6 \