Recently came across a scenario, Azure function .netcore package files went missing after redeploying the underlying infra using arm template.
Root cause analysis discovered that when redeploying the underlying infra using arm template, it will clear out wwwroot folder in azure function.
To prevent the wwwroot folder from being emptied out, just need to add an app setting!
WEBSITE_RUN_FROM_PACKAGE: 1
 

 
    
Top comments (0)