Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -18,5 +18,5 @@ COPY --chown=user . /app
|
|
| 18 |
EXPOSE 7860
|
| 19 |
|
| 20 |
# Run FastAPI with Uvicorn
|
| 21 |
-
CMD ["python", "
|
| 22 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 18 |
EXPOSE 7860
|
| 19 |
|
| 20 |
# Run FastAPI with Uvicorn
|
| 21 |
+
CMD ["python", "app.py"]
|
| 22 |
+
#CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|