Maulidaaa commited on
Commit
8d3902b
·
verified ·
1 Parent(s): 588f041

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile CHANGED
@@ -1,5 +1,11 @@
1
  FROM python:3.9
2
 
 
 
 
 
 
 
3
  # Install required system packages
4
  RUN apt-get update && apt-get install -y libgl1 libglib2.0-0
5
 
 
1
  FROM python:3.9
2
 
3
+ RUN apt-get update && apt-get install -y \
4
+ tesseract-ocr \
5
+ libgl1 \
6
+ libglib2.0-0 \
7
+ && apt-get clean
8
+
9
  # Install required system packages
10
  RUN apt-get update && apt-get install -y libgl1 libglib2.0-0
11