from waitress import serve # app.run(host='0.0.0.0', port=port) # <---- REMOVE THIS # serve your flask app with waitress, instead of running it directly. serve(app, host='0.0.0.0', port=port) # <---- ADD THIS