A seed-catalog team has a ready Linux image in Azure Container Registry and also a raw ASP.NET repository. At App Service create time, how should they choose the hosting model?
Select an answer to reveal the explanation.
Short Explanation
App Service asks up front: are you bringing source for a known language stack, or a finished container image? Those are two different create paths. Do not mash an ACR image into a code site and hope the runtime sorts it out.
Full Explanation
When creating an Azure App Service web app, you select either a language/runtime stack for code deployment or a custom container that pulls from a registry such as ACR. Both patterns are in-scope for App Service, but they are distinct create-time choices. Mixing them—treating an ACR image as loose files on a code app, or forcing Functions/ACI into the decision—misses that model boundary.