Does sanic support single process mode inside docker container

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'

It turns out that i was using a older version while building the docker image.
Correcting it to 22.9 made it work.

Glad to see you figured it out. The answer obviously is “yes, if you are on v22.9+”.