FabIndy commited on
Commit
6702ebc
·
1 Parent(s): 74796a1

Confirm working Dockerfile for Hugging Face

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -20,5 +20,6 @@ RUN pip install --no-cache-dir -r requirements.txt
20
  EXPOSE 7860
21
 
22
  # Commande de lancement
23
- CMD ["python", "app.py"]
 
24
 
 
20
  EXPOSE 7860
21
 
22
  # Commande de lancement
23
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
24
+
25