Hi @saurabh
Welcome to Microsoft Q&A! Thanks for posting the question.
Azure functions provides serverless compute for Azure. You can use Functions to build web APIs, respond to database changes, process IoT streams, manage message queues, and more. It is not like a VM where you can install additional application. The behavior of FunctionApp will depend on the code written (and packages used).
You have an option to use custom handler with Azure Functions for scenarios mentioned below:
>. Implement a function app in a language that's not currently offered out-of-the box, such as Go or Rust.
>. Implement a function app in a runtime that's not currently featured by default, such as Deno.
For more details on custom handlers, please refer to Azure Functions custom handlers
Please let me know if I misunderstood your query or if you have any questions.
---
Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.