Minahel commited on
Commit
9eb20e8
·
unverified ·
1 Parent(s): 76629ad

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+
3
+ RUN apt-get update && apt-get install -y ffmpeg tesseract-ocr libtesseract-dev
4
+
5
+ COPY . .
6
+
7
+ RUN pip install -r requirements.txt
8
+
9
+ CMD ["streamlit", "run", "app.py"]