What is the best way to run flask app in Azure.
I wanted to create a Azure Function and have the flask library within the Azure Function but the problem is trying to avoid cold starts.
Is there a way to have flask App on Azure without worrying about cold starts. I would like it to run on demand when its triggered.
Premium plan would not work because of pre-warmed instances times duration.
The Azure Functions would be implemented as an APIs that are called from web-pages, then a cold start potentially would be an issue.