GVAmaresh commited on
Commit
62be257
·
1 Parent(s): edd81ad

dev: built for ref

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