Had some issues deploying a web app to azure. Simple solution was to either delete the following setting on azure:
WEBSITE_RUN_FROM_PACKAGE
OR
Set the value to 0.
What is the website run from package do?
WEBSITE_RUN_FROM_PACKAGE is a feature that lets you run a Web App or Function App by simply pointing it to a zip file containing your files.
Happy deploying!