@@ -27,36 +27,4 @@ Push to your _private_ AWS ECR instance, and configure lambda to run from this c
2727
2828## AzureFunctionsBaseImage
2929
30- #### ghcr.io/esri/arcgis-python-api-azure-functions: latest
31-
32- [ Sample] ( samples/AzureFunctions )
33-
34- To use this image, setup your dockerfile like
35- ```
36- FROM ghcr.io/esri/arcgis-python-api-azure-functions:latest
37- COPY . /home/site/wwwroot
38- ```
39-
40- Your copied resources will need to include:
41- - ` host.json ` , with your appsettings
42- - ` function_app.py ` , such as:
43-
44- ```
45- import arcgis
46- import azure.functions as func
47-
48- app = func.FunctionApp()
49-
50- @app.http_trigger(route='GET /', methods=['get'])
51- def main(req: func.HttpRequest) -> func.HttpResponse:
52- return func.HttpResponse(f"Hello from Azure Functions using ArcGIS API for Python {arcgis.__version__}!")
53- ```
54-
55- Push to the container registry of your choice.
56-
57- For futher information, see:
58-
59- - https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-python?tabs=asgi%2Capplication-level&pivots=python-mode-decorators#programming-model
60- - https://learn.microsoft.com/en-us/azure/azure-functions/functions-deploy-container-apps?tabs=acr%2Cbash&pivots=programming-language-python#create-and-test-the-local-functions-project
61- - https://github.com/Azure/azure-functions-python-worker
62- - https://learn.microsoft.com/en-us/azure/azure-functions/functions-how-to-custom-container
30+ The AzureFunctionsBase image has been deprecated in favor of using the standard runtime for Azure Functions development.
0 commit comments