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