https://github.com/epomatti/az-function-custom-image
Azure Function with custom image
https://github.com/epomatti/az-function-custom-image
azure azure-function docker
Last synced: 7 months ago
JSON representation
Azure Function with custom image
- Host: GitHub
- URL: https://github.com/epomatti/az-function-custom-image
- Owner: epomatti
- License: mit
- Created: 2020-04-24T02:57:50.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2022-03-24T01:21:10.000Z (almost 4 years ago)
- Last Synced: 2025-06-04T14:19:22.899Z (8 months ago)
- Topics: azure, azure-function, docker
- Language: Dockerfile
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Azure Function with Custom Image

Custom image for an Azure Functions application.
## Local development
Start the storage emulator:
```sh
azurite-blob -l azurite
```
Create the settings file:
```sh
cp local.settings.Development.json local.settings.json
```
Install and start the app:
```sh
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
func start
```
## Docker
### Reference
[Create a function on Linux using a custom container](https://docs.microsoft.com/en-us/azure/azure-functions/functions-create-function-linux-custom-image?tabs=bash%2Cportal&pivots=programming-language-python)