makhdoomnaeem commited on
Commit
08cd2ae
·
verified ·
1 Parent(s): b0f867a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -14,7 +14,9 @@ WORKDIR /app
14
  COPY requirements.txt .
15
 
16
  # Install Python dependencies
17
- RUN pip install --no-cache-dir -r requirements.txt
 
 
18
 
19
  # Copy the rest of the application code
20
  COPY . .
 
14
  COPY requirements.txt .
15
 
16
  # Install Python dependencies
17
+ # RUN pip install --no-cache-dir -r requirements.txt
18
+ # Install Tesseract and its dependencies
19
+ RUN apt-get update && apt-get install -y tesseract-ocr tesseract-ocr-eng
20
 
21
  # Copy the rest of the application code
22
  COPY . .