From d0352a4cd09c08314caf74a9fedf34ecd4ef1a2f Mon Sep 17 00:00:00 2001 From: romusters Date: Sun, 3 Nov 2024 11:04:06 +0000 Subject: [PATCH] Update tutorial-containerize-simple-web-app-for-app-service.md The startup-file flag was not set when creating the web app resulting in the web app not working. The web app would simply remain stuck at 'loading' in the browser. Fortunately the startup.sh was given, but simply not used. --- .../tutorial-containerize-simple-web-app-for-app-service.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/articles/python/tutorial-containerize-simple-web-app-for-app-service.md b/articles/python/tutorial-containerize-simple-web-app-for-app-service.md index 8d474f64ac..a9bb6d8d1c 100644 --- a/articles/python/tutorial-containerize-simple-web-app-for-app-service.md +++ b/articles/python/tutorial-containerize-simple-web-app-for-app-service.md @@ -277,7 +277,8 @@ The `--registry` option specifies the registry name, and the `--image` option sp --role AcrPull \ --scope /subscriptions/$SUBSCRIPTION_ID/resourceGroups/web-app-simple-rg \ --acr-use-identity --acr-identity [system] \ - --container-image-name webappacr123.azurecr.io/webappsimple:latest + --container-image-name webappacr123.azurecr.io/webappsimple:latest + --startup-file startup.sh ``` Notes: