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

Docker file

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