I'm trying to deploy the Hello World Azure Function using a Docker image by following this doc to the letter.
The only difference is I'm using WestUS for the region, and uploaded my image to Azure Container Registry: <myname>.azurecr.io/<imagename>
I deploy using
az functionapp create --name <myppname> --storage-account <mystorageaccount> --resource-group <myresourcegroup> --plan <mypremiumplan> --deployment-container-image-name <myname>.azurecr.io/<imagename>
However I get this:
Error:
Azure Functions Runtime is unreachable. Click here for details on storage configuration.
I looked through the troubleshooting docs and none of the cases seem relevant. What could be the issue?