PrathameshRaut commited on
Commit
19a72a5
·
verified ·
1 Parent(s): 5072637

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -1,8 +1,10 @@
1
  FROM python:3.9-slim
2
 
3
- # Install system dependencies (Poppler for pdf2image)
4
  RUN apt-get update && apt-get install -y \
5
  poppler-utils \
 
 
6
  && rm -rf /var/lib/apt/lists/*
7
 
8
  # Set working directory
 
1
  FROM python:3.9-slim
2
 
3
+ # Install system dependencies (Poppler for pdf2image + Tesseract for OCR)
4
  RUN apt-get update && apt-get install -y \
5
  poppler-utils \
6
+ tesseract-ocr \
7
+ tesseract-ocr-hin \
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
  # Set working directory