RDA9527 commited on
Commit
14291bf
·
verified ·
1 Parent(s): 5e9524b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -14,4 +14,4 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
  # - `-w 4`: Uses 4 worker processes for handling requests
15
  # - `-b 0.0.0.0:7860`: Binds the server to port 7860 on all network interfaces
16
  # - `app:app`: Runs the Flask app (assuming `server.py` contains the Flask instance named `app`)
17
- CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "python app/server.py & streamlit run app/app.py"]
 
14
  # - `-w 4`: Uses 4 worker processes for handling requests
15
  # - `-b 0.0.0.0:7860`: Binds the server to port 7860 on all network interfaces
16
  # - `app:app`: Runs the Flask app (assuming `server.py` contains the Flask instance named `app`)
17
+ CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "python server.py & streamlit run app.py"]