Neurolingua commited on
Commit
2b88356
·
verified ·
1 Parent(s): 84582aa

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -4
Dockerfile CHANGED
@@ -12,10 +12,7 @@ COPY ./requirements.txt /code/requirements.txt
12
  RUN pip install --no-cache-dir -r /code/requirements.txt
13
 
14
  # Install EasyOCR dependencies
15
- RUN apt-get update && \
16
- apt-get install -y \
17
- libgl1-mesa-glx \
18
- libglib2.0-0
19
  # Copy the rest of the application code
20
  COPY . /code
21
 
 
12
  RUN pip install --no-cache-dir -r /code/requirements.txt
13
 
14
  # Install EasyOCR dependencies
15
+ RUN apt-get update && apt-get install -y tessaract-ocr
 
 
 
16
  # Copy the rest of the application code
17
  COPY . /code
18