Change existing Azure Function's hosting OS from Windows to Linux

Viewed 3025

Currently we have a Function App in Azure which is hosted in Windows. Initially once you create, you need to choose the hosting environment as below:

azure-function-hosting

Question:

Is there any chance to change the underlying hosting environment for already created Azure Functions? I did not find anything related to that even in the official documentation.

Appreciate the clarification.

1 Answers

Change existing Azure Function's hosting OS from Windows to Linux

In short, it's impossible.

Because of the potential of breaking changes, you can only set the Operating System when you create function.

enter image description here

Related