Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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 . .
|