Spaces:
Sleeping
Sleeping
Modified docker file
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -11,7 +11,7 @@ COPY ./requirements.txt /code/requirements.txt
|
|
11 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
12 |
|
13 |
#
|
14 |
-
COPY ./
|
15 |
|
16 |
#
|
17 |
-
CMD ["uvicorn", "
|
|
|
11 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
12 |
|
13 |
#
|
14 |
+
COPY ./src /code/src
|
15 |
|
16 |
#
|
17 |
+
CMD ["uvicorn", "src.app.app:app", "--host", "0.0.0.0", "--port", "80"]
|