We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a205783 commit bd7ef8cCopy full SHA for bd7ef8c
code/function/.dockerignore
@@ -0,0 +1 @@
1
+local.settings.json
code/function/Dockerfile
@@ -0,0 +1,11 @@
+# To enable ssh & remote debugging on app service change the base image to the one below
2
+# FROM mcr.microsoft.com/azure-functions/python:4-python3.7-appservice
3
+FROM mcr.microsoft.com/azure-functions/python:4-python3.11
4
+
5
+ENV AzureWebJobsScriptRoot=/home/site/wwwroot \
6
+ AzureFunctionsJobHost__Logging__Console__IsEnabled=true
7
8
+COPY requirements.txt /
9
+RUN pip install -r /requirements.txt
10
11
+COPY . /home/site/wwwroot
0 commit comments