Serverless web application
https://github.com/mspnp/serverless-reference-implementation
# List commands
func init --docker
func new
# Run with Azure Functions Core Tools
cd Web && func host start
# Run with VSCode
Ctrl + Shift + P > Tasks: Run Task > func: host start
# Run with Docker
docker build -t <imageName> .
# Example: docker build -t sample .
docker run -p <port> <imageName>
# Example: docker run -p 8080:80 sample