When Azure Functions Meets Container
# This is the old image | |
FROM microsoft/azure-functions-runtime:v2.0.0-beta1 | |
ENV AzureWebJobsScriptRoot=/home/site/wwwroot | |
COPY . /home/site/wwwroot |
# Gets the nightly build of Azure Functions runtime | |
FROM microsoft/azure-functions-dotnet-core2.0:dev-jessie | |
ENV AzureWebJobsScriptRoot=/home/site/wwwroot | |
COPY . /home/site/wwwroot |
node_modules | |
npm-debug.log | |
Dockerfile* | |
docker-compose* | |
.dockerignore | |
.git | |
.gitignore | |
README.md | |
LICENSE | |
.vscode | |
local.settings.json |
{ | |
"disabled": false, | |
"bindings": [ | |
{ | |
"authLevel": "anonymous", | |
"name": "req", | |
"type": "httpTrigger", | |
"direction": "in", | |
"route": "test" | |
}, | |
{ | |
"name": "$return", | |
"type": "http", | |
"direction": "out" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment