Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,909 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I am running an Azure App Service on Python which requires a lot of modules/Python packages to work. I wanted to ask if there is any way to prevent reinstalling them every time I deploy my app? I am using the "az webapp up" command to deploy the app and it seems to reset my server to its initial state after each deployment (which doesn't come built in with the modules I need).
All the modules have to be mentioned in requirements.txt
SCM_DO_BUILD_DURING_DEPLOYMENT = false
If we sets this, kudu deployment script shouldn't run
Does this answer your query?