Spaces:
Runtime error
Runtime error
Commit
·
d83d82a
1
Parent(s):
1a374ce
Docker file
Browse files- 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
|
15 |
|
16 |
COPY . .
|
17 |
|
18 |
-
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "
|
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 |
|