Farazhp commited on
Commit
c65d2eb
·
1 Parent(s): b149eb3

Create Dockerfile

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