Getting module not found error in during site startup
I am trying to deploy an azure bot (python-echo-bot) to azure app service using arm templates
https://github.com/microsoft/BotBuilder-Samples/tree/main/samples/python/02.echo-bot
It build successfully but at the site starting process I get this error (see image
)
I am using zip file for the deployment, here is the zip file contents
And no I am not including the root folder in the zip file.
i am zipping the files inside
BotBuilder-Samples\samples\python\02.echo-bot\
Please help, I am stuck.
Edit:
I noticed that the gunicorn container is listening on port 8000 and the app.py bot runs on port 3978.... also the appCommandLine in the botApp template has command - "
gunicorn --bind 0.0.0.0: --worker-class aiohttp.worker.GunicornWebWorker --timeout 600 app:APP
"