promtd commited on
Commit
1ecea38
1 Parent(s): 4764f40

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +22 -0
Dockerfile ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+
4
+
5
+ WORKDIR /code
6
+
7
+
8
+
9
+ COPY ./requirements.txt /code/requirements.txt
10
+
11
+
12
+
13
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
14
+
15
+
16
+
17
+ COPY . .
18
+
19
+
20
+
21
+ CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
22
+ git add Dockerfile && git commit -m 'Add application file' && git push