Ok.
So, for this to run, gunicorn will not server the Dash app directly.
Therefore, you have to change this setting:
To this:
gunicorn --bind=0.0.0.0 --timeout 600 app:server
And in your code, you have to expose the app’s server, via:
server = app.server
All based on this answer: