BAKKALIAYOUB commited on
Commit
4b2e474
·
1 Parent(s): eef7126

Exposing port

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -14,4 +14,7 @@ USER root
14
  RUN chmod 777 /app
15
  USER user
16
 
17
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
 
 
14
  RUN chmod 777 /app
15
  USER user
16
 
17
+ EXPOSE 7860 7860
18
+
19
+ ENTRYPOINT ["python3"]
20
+ CMD ["app.py"]