heyday1234 commited on
Commit
8d4e23b
·
verified ·
1 Parent(s): 8b09d71

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -18,7 +18,8 @@ RUN pip install --no-cache-dir --user --upgrade -r ./requirements.txt
18
 
19
  COPY --chown=user:user . $HOME/app
20
 
21
- EXPOSE 7860
 
 
22
 
23
- CMD ["python", "-m", "chainlit", "run", "model.py", "-h", "--port", "7860"]
24
 
 
18
 
19
  COPY --chown=user:user . $HOME/app
20
 
21
+ EXPOSE 8080
22
+
23
+ CMD ["python", "-m", "chainlit", "run", "model.py", "-h", "--port", "8080", "--host", "0.0.0.0"]
24
 
 
25