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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 sudo apt update
13
- RUN sudo apt install tesseract-ocr
14
- RUN sudo 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
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