deploy azure function from Docker Hub CI/CD

In the last blog post we have seen how to deploy azure function from visual studio 2019 . In this tutorial we are going to see how to deploy a function using docker hub . To use the commands used in powershell first you need to Install the Azure Functions Core Tools . The script used in the video : Script func init –docker func new

deploy azure function from visual studio 2019

In the last blog post we have created an Azure function that save data from requests inside json files (a blob storage). In this post we are going to create a new function , we are not going to make any change , but we are going to see how to deploy it to azure . Before we start , you must know that you can create an azure function directly for azure portal and write code there .

Azure Function to Upload Data to Azure Blob

Azure Functions is a solution for easily running small pieces of code, or “functions,” in the cloud. You can write just the code you need for the problem at hand, without worrying about a whole application or the infrastructure to run it. Functions can make development even more productive, and you can use your development language of choice, such as C#, Java, JavaScript, PowerShell, and Python. Pay only for the time your code runs and trust Azure to scale as needed.