Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -27,4 +27,4 @@ RUN pip install --no-cache-dir --upgrade pip \
|
|
| 27 |
&& pip install --no-cache-dir -r requirements.txt
|
| 28 |
|
| 29 |
# Run the FastAPI server using uvicorn
|
| 30 |
-
CMD ["uvicorn", "
|
|
|
|
| 27 |
&& pip install --no-cache-dir -r requirements.txt
|
| 28 |
|
| 29 |
# Run the FastAPI server using uvicorn
|
| 30 |
+
CMD ["uvicorn", "app:app", "--reload", "--host", "0.0.0.0", "--port", "7860"]
|