DIVY118 commited on
Commit
001c3d9
1 Parent(s): 281e828

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- 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
 
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