Get the list of the Linux Azure Web Apps runtime languages and their versions. This will tell us the supported runtimes with their respective versions in Azure Web Apps for Linux.
Prerequisites
- Azure CLI
- Azure Subscription
Login to your Azure Subscription from the Command Line
To get the list of supported Azure Linux Web Apps runtime languages with their versions, first, you need to login to Azure CLI.
Run the below command on the command line to login to your Azure subscription.
az login
Get Supported Runtime Languages and Version for Azure Linux Web Apps
Run the below command to get the supported runtime languages with their versions for Linux Azure Web Apps.
az webapp list-runtimes --linux
Output
C:\Program Files\Microsoft SDKs\Azure\.NET SDK\v2.9>az webapp list-runtimes --linux
Argument 'linux' has been deprecated and will be removed in a future release. Use '--os-type' instead.
[
"DOTNETCORE:6.0",
"DOTNETCORE:5.0",
"DOTNETCORE:3.1",
"NODE:16-lts",
"NODE:14-lts",
"NODE:12-lts",
"PYTHON:3.9",
"PYTHON:3.8",
"PYTHON:3.7",
"PHP:8.0",
"PHP:7.4",
"RUBY:2.7",
"RUBY:2.7.3",
"RUBY:2.6",
"RUBY:2.6.2",
"JAVA:11-java11",
"JAVA:8-jre8",
"JBOSSEAP:7-java11",
"JBOSSEAP:7-java8",
"TOMCAT:10.0-java11",
"TOMCAT:10.0-jre8",
"TOMCAT:9.0-java11",
"TOMCAT:9.0-jre8",
"TOMCAT:8.5-java11",
"TOMCAT:8.5-jre8"
]