KZTech commited on
Commit
7a704f0
·
verified ·
1 Parent(s): b6eb8a2

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM ghcr.io/huggingface/spaces-sdk:ocr
2
+
3
+ COPY requirements.txt .
4
+ RUN pip install -r requirements.txt
5
+
6
+ COPY app.py .
7
+
8
+ CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]