I've just created an Azure Linux Web App (preview) following this link:
I've developped a koajs backend that requires node v7.6.0 or higher.
Also I've read this SO Post: Upgrading Node on an Azure website? but it is related to Azure Windows Web App using iis_node.
So far, I tried to install nvm from the bash kudu console:
https://{mysitename}.scm.azurewebsites.net/DebugConsole
But it did not work
So now my guess is that when I choose the Node.js version from the azure portal, Azure selects a specific built-in docker image. Because there is no image for Node.js v7.6.0 or higher I need to create my own image ?
Is there anyway to get the latest docker image config for node.js from the portal or do I need to create one from scratch ?