Spaces:
Sleeping
Sleeping
Soham Banerjee commited on
Commit ·
7bf9d4b
1
Parent(s): ef72aeb
Fix Dockerfile CMD to use server.app
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -37,4 +37,4 @@ EXPOSE 7860
|
|
| 37 |
HEALTHCHECK --interval=30s --timeout=10s --start-period=15s \
|
| 38 |
CMD curl -f http://localhost:7860/ || exit 1
|
| 39 |
|
| 40 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 37 |
HEALTHCHECK --interval=30s --timeout=10s --start-period=15s \
|
| 38 |
CMD curl -f http://localhost:7860/ || exit 1
|
| 39 |
|
| 40 |
+
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]
|