Asim Osman Osman commited on
Commit
7a066e5
·
1 Parent(s): 1ec2252

Fix application path for Gunicorn

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -20,4 +20,4 @@ EXPOSE 3000
20
 
21
  # 7. Define the command to start the Gunicorn server for production
22
  # Gunicorn is a robust server for Flask, and 'eventlet' is required for Socket.IO.
23
- CMD ["gunicorn", "--worker-class", "eventlet", "-w", "1", "--bind", "0.0.0.0:3000", "app:app"]
 
20
 
21
  # 7. Define the command to start the Gunicorn server for production
22
  # Gunicorn is a robust server for Flask, and 'eventlet' is required for Socket.IO.
23
+ CMD ["gunicorn", "--worker-class", "eventlet", "-w", "1", "--bind", "0.0.0.0:3000", "dashboard.app:app"]