madhurabharadwaj
I've tried following: https://learn.microsoft.com/en-us/azure/azure-functions/functions-deploy-container?tabs=acr%2Cpowershell%2Cazure-cli&pivots=programming-language-javascript using the Node.js v4 programming model with no joy.
The steps to reproduce are very simple:
func --version => 4.0.5390
func init --worker-runtime node --language javascript --docker
func new --name HttpExample --template "HTTP trigger" --authlevel anonymous
docker build --tag test/azurefunctionsimage:v1.0.0 .
docker run -p 8080:80 test/azurefunctionsimage:v1.0.0
The templated code looks fine and follows the rules here: https://learn.microsoft.com/en-us/azure/azure-functions/functions-node-upgrade-v4?tabs=v4
Always the same results No job functions are found and therefore No HTTP routes mapped
There is a Question on Stack Over flow https://stackoverflow.com/questions/77325691/javascript-v4-containerized-azure-functions-no-job-functions-found.
Any help on this would be greatly appreciated