Spaces:
Running
Running
sghorbal commited on
Commit ·
c38e90f
1
Parent(s): dd21b8c
move code files into ./src
Browse files- Dockerfile +1 -1
- app.py → src/app.py +0 -0
- utils.py → src/utils.py +0 -0
Dockerfile
CHANGED
|
@@ -18,4 +18,4 @@ COPY . .
|
|
| 18 |
EXPOSE 7860
|
| 19 |
|
| 20 |
# Commande de lancement (FastAPI via Uvicorn)
|
| 21 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 18 |
EXPOSE 7860
|
| 19 |
|
| 20 |
# Commande de lancement (FastAPI via Uvicorn)
|
| 21 |
+
CMD ["uvicorn", "src.app:app", "--host", "0.0.0.0", "--port", "7860"]
|
app.py → src/app.py
RENAMED
|
File without changes
|
utils.py → src/utils.py
RENAMED
|
File without changes
|