Spaces:
Runtime error
Runtime error
ya
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -7,6 +7,6 @@ COPY app /code/app
|
|
| 7 |
RUN pip install --upgrade pip
|
| 8 |
RUN pip install -r /code/app/requirements.txt
|
| 9 |
|
| 10 |
-
EXPOSE
|
| 11 |
|
| 12 |
-
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 7 |
RUN pip install --upgrade pip
|
| 8 |
RUN pip install -r /code/app/requirements.txt
|
| 9 |
|
| 10 |
+
EXPOSE 8000
|
| 11 |
|
| 12 |
+
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|