Go to file
R. Tyler Croy d35fa65df5
Forgot that azure-functions-core still requires Node 8
https://github.com/Azure/azure-functions-core-tools/issues/326
2018-04-19 15:12:15 -07:00
.gitignore Add a simple little Docker container for testing Azure Functions 2017-11-15 21:44:59 -08:00
Dockerfile Forgot that azure-functions-core still requires Node 8 2018-04-19 15:12:15 -07:00
Makefile Add a simple little Docker container for testing Azure Functions 2017-11-15 21:44:59 -08:00
README.adoc Update to Debian 9 and .NET Core 2.0.6 2018-04-19 13:16:18 -07:00
dotnetdev.list Add a simple little Docker container for testing Azure Functions 2017-11-15 21:44:59 -08:00
local-azure-functions.png Screenshot of the thing in action 2017-11-16 08:26:01 -08:00

README.adoc

<html lang="en"> <head> </head>

Azure Functions Container

This is a Docker container to make running Azure Functions Core Tools easier.

docker pull rtyler/azure-functions

Running

The easiest way to run an app is to change to the directory where your Azure Function app lives and run:

docker run --net host --rm -ti -v $PWD:$PWD -w $PWD rtyler/azure-functions func start
In action
</html>