Skip to content

ntxinh/azure-serverless-web-application

Repository files navigation

azure-serverless-web-application

Serverless web application

https://github.com/mspnp/serverless-reference-implementation

Command

# 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