Vladyslav Len commited on
Commit
aeef9ae
1 Parent(s): 072eec7

chore(): added dockerfile

Browse files
Files changed (2) hide show
  1. Dockerfile +9 -0
  2. requirements.txt +0 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+ WORKDIR /code
4
+
5
+ RUN pip install --no-cache-dir --upgrade gradio
6
+
7
+ COPY . .
8
+
9
+ CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
requirements.txt ADDED
File without changes