Skip to content

Commit 4d3e623

Browse files
authored
Merge pull request #113668 from ggailey777/pramod
Add dockerfile to folder structure
2 parents 570b2b9 + 9214f13 commit 4d3e623

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

articles/azure-functions/functions-reference-python.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ The recommended folder structure for a Python Functions project looks like the f
7272
| | - my_second_helper_function.py
7373
| - host.json
7474
| - requirements.txt
75+
| - Dockerfile
7576
tests
7677
```
7778
The main project folder (\_\_app\_\_) can contain the following files:
@@ -81,6 +82,7 @@ The main project folder (\_\_app\_\_) can contain the following files:
8182
* *host.json*: Contains global configuration options that affect all functions in a function app. This file does get published to Azure. Not all options are supported when running locally. To learn more, see [host.json](functions-host-json.md).
8283
* *.funcignore*: (Optional) declares files that shouldn't get published to Azure.
8384
* *.gitignore*: (Optional) declares files that are excluded from a git repo, such as local.settings.json.
85+
* *Dockerfile*: (Optional) used when publishing your project in a [custom container](functions-create-function-linux-custom-image.md).
8486

8587
Each function has its own code file and binding configuration file (function.json).
8688

0 commit comments

Comments
 (0)