Why does deploying updates a python Flask app to Azure Web App Service re-create the app virtual environment and reinstalls every required package? This takes a very long time and is really not needed if I am only updating a .html file or .py file without importing any new package.
Is there a way to deploy updates to my python app without this un-necessary step? It takes approximately 22 minutes to do a simple deployment this way :(
. .