yeswanthvarma commited on
Commit
92a8cfe
·
verified ·
1 Parent(s): cd39c9c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -9,12 +9,11 @@ ENV HOME=/tmp
9
  RUN apt-get update && apt-get install -y \
10
  libgl1 \
11
  libglib2.0-0 \
12
- libsm6 \
13
- libxext6 \
14
- libxrender-dev \
15
  && rm -rf /var/lib/apt/lists/*
16
 
17
 
 
18
  # Pre-create the EasyOCR directory
19
  RUN mkdir -p /tmp/.easyocr && chmod -R 777 /tmp/.easyocr
20
 
 
9
  RUN apt-get update && apt-get install -y \
10
  libgl1 \
11
  libglib2.0-0 \
12
+ tesseract-ocr \
 
 
13
  && rm -rf /var/lib/apt/lists/*
14
 
15
 
16
+
17
  # Pre-create the EasyOCR directory
18
  RUN mkdir -p /tmp/.easyocr && chmod -R 777 /tmp/.easyocr
19