A maple cooperative pushes a new image over the same :latest tag in ACR, but the App Service container web app still runs yesterday’s bits. What should the developer do?
Select an answer to reveal the explanation.
Short Explanation
Moving the :latest sticker on the warehouse shelf does not automatically swap the jar already on the store counter. App Service keeps running what it already pulled until you restart or tell it to pull again. A moved tag is not a deploy by itself.
Full Explanation
App Service does not treat every overwrite of a mutable tag such as :latest as an automatic redeploy. After pushing a new image to the same tag, the developer must restart the app, refresh container configuration, or use a webhook/continuous pull mechanism so the host retrieves the new digest. Prefer immutable tags for clarity, but when :latest is reused, an explicit pull signal is still required.