Spaces:
Runtime error
Runtime error
Aslah Mohamed commited on
Commit ·
b35ebec
1
Parent(s): 99febe9
Fixed HF startup path
Browse files- Dockerfile +1 -1
- app.py +0 -1
Dockerfile
CHANGED
|
@@ -8,4 +8,4 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 8 |
|
| 9 |
COPY . .
|
| 10 |
|
| 11 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 8 |
|
| 9 |
COPY . .
|
| 10 |
|
| 11 |
+
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
app.py
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
from app.main import app
|
|
|
|
|
|