aminaj commited on
Commit
03bc888
·
verified ·
1 Parent(s): f6b0c93

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -66,7 +66,9 @@ COPY . .
66
 
67
  # Expose the port that the application listens on.
68
  EXPOSE 7860
 
69
 
70
  # Run the application.
 
71
  # CMD uvicorn 'main:app' --host=0.0.0.0 --port=8000
72
- CMD ["bash", "-c", "streamlit run BrainBot.py --server.port 8501 & uvicorn main:app --host 0.0.0.0 --port 7860"]
 
66
 
67
  # Expose the port that the application listens on.
68
  EXPOSE 7860
69
+ EXPOSE 8501
70
 
71
  # Run the application.
72
+ ENTRYPOINT ["streamlit", "run"]
73
  # CMD uvicorn 'main:app' --host=0.0.0.0 --port=8000
74
+ CMD ["bash", "-c", "uvicorn main:app --host 0.0.0.0 --port 7860 & streamlit run BrainBot.py --server.port 8501"]