Would like to know if Sanic support single process mode inside docker container ?
The server starts fine when run as a python script. however when started via container, it throws up this TypeError.
Traceback (most recent call last):
File "/app/server.py", line 14, in <module>
app.run(host=host, port=port, access_log=True, single_process=True)
TypeError: run() got an unexpected keyword argument 'single_process'