Update Dockerfile
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
|
@@ -9,9 +9,8 @@ COPY . /app
|
|
| 9 |
|
| 10 |
# Install any dependencies
|
| 11 |
RUN pip install --no-cache-dir flask pytesseract pillow requests
|
| 12 |
-
RUN apt update
|
| 13 |
-
|
| 14 |
-
RUN apt install libtesseract-dev
|
| 15 |
# Expose the port the app runs on
|
| 16 |
|
| 17 |
# Run the Flask app
|
|
|
|
| 9 |
|
| 10 |
# Install any dependencies
|
| 11 |
RUN pip install --no-cache-dir flask pytesseract pillow requests
|
| 12 |
+
RUN apt update && apt install -y tesseract-ocr
|
| 13 |
+
|
|
|
|
| 14 |
# Expose the port the app runs on
|
| 15 |
|
| 16 |
# Run the Flask app
|