TeoVr81
TeoVr81

Reputation: 1009

Azure functions project deployed in local server

I need to deploy an azure functions project written in C# language in a local server for test purpose, before deploying it in Azure. Is it possible?

Upvotes: 1

Views: 39

Answers (1)

Thiago Custodio
Thiago Custodio

Reputation: 18387

You can use the oficial docker image, but the experience will be totally different:

https://hub.docker.com/_/microsoft-azure-functions-base

You can also use the local development tools

Upvotes: 2

Related Questions