NewtonKimathi commited on
Commit
1a374ce
·
1 Parent(s): adcf490

Docker file

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -12,9 +12,9 @@ RUN pip install --no-cache-dir --upgrade -r /Sepsis/requirements.txt
12
 
13
 
14
  EXPOSE 7860
15
-
16
  COPY . .
17
 
18
- CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "7860"]
19
 
20
 
 
12
 
13
 
14
  EXPOSE 7860
15
+
16
  COPY . .
17
 
18
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
19
 
20