Questions tagged [azure-functions-docker]
13 questions
1
vote
0 answers
Azure Function run in docker compose but debug not working
I create sample project with Azure functions & Dapr and running in Linux Docker. I use docker compose and yml file to start project. But there are few issues. I'm using VS 2022 and VS code.
First in VS 2022 it will not start for Azure Function…

SnowFox108
- 71
- 6
1
vote
1 answer
Azure Function App from the Docker image doesnt show functions in the Az portal page
I try to create my first dummy Azure Function App from the Docker container.
The issue is that after creation from the published docker image, I can see the default page, but I do not see any functions (the default function should be displayed).
The…

Muflix
- 6,192
- 17
- 77
- 153
1
vote
1 answer
Authenticate Azure Functions
I am using a HTTP Function App, I would like to authenticate it using client id and function keys (inside my function) using python.
I have a API Management setup for the current service but would like to authenticate on function app level.
Thanks

mannar-senpai
- 25
- 5
1
vote
1 answer
Why does an anonymous httptrigger azure function throw a 500 internal server error when 'code' is a param in query string?
I have a Function App that is running in a container in Kubernetes. One of my endpoints is an httptrigger with anonymous access. However the query string contains a parameter code (supplied by a 3rd party vendor with no control over its name) that…

tanzencoder
- 67
- 1
- 8
1
vote
0 answers
Azure Functions as Docker Image : Cant find files
So I am not sure how to explain this. I am running Azure Functions as Docker Images (c#)
I have some files that when running the Azure function in Visual Studio get copied to the bin directory and the compiled code picks them up fine.…

Burf2000
- 5,001
- 14
- 58
- 117
0
votes
1 answer
Publish App to azure functions failing with Repository changed its 'Suite' value from 'stable-updates' to 'oldstable-updates'
I am publishing my python application with this command:
func azure functionapp publish myapp --build-native-deps --additional-packages cmake opencv-python-headless
it pulls the microsoft docker image, and then spins up a container and throws this…

wisdom
- 3
- 2
0
votes
2 answers
How to Deploy Azure Function App via Azure CLI?
I have an Azure Function App Written in C# and I am trying to build them using the "docker build" command on my local machine. The build is getting completed successfully. Now I have a Docker Image on my local machine which I would like to try…

Maryo David
- 539
- 1
- 7
- 18
0
votes
1 answer
Publish AZWebapp is not working for Linux function app
Publish-AzWebApp is not working for Linux function app
Publish-AzWebApp -ResourceGroupName Default-Web-WestUS -Name MyApp -ArchivePath C:\\project\\app.zip
I am using the above command in powershell and running that powershell in CICD process. But…

AadityaP
- 1
0
votes
1 answer
Azure Function running in AKS throws 500 on query string parameter for http trigger function
I have an azure function app that I have containerized and running in AKS. One of my http endpoints has a query string parameter of code=. When I call that endpoint I immediately get a 500 response. To rule out anything in the code I only return a…

tanzencoder
- 67
- 1
- 8
0
votes
0 answers
Unable to run .net core app Azure Durable Functions v3 in docker
I am trying to implement a docker-compose.yml file to build a container for a .net core Azure Durable Function v3. The following code snippet is from the environment file i.e.…

Arash
- 3,628
- 5
- 46
- 70
0
votes
1 answer
How to deploy a docker container from Azure function app?
I want to programmatically deploy a new docker container on demand from an existing image from an azure function app (e.g. from a cosmodb trigger). Can someone provide some guidance? I'm having difficulty finding any documentation as all my…

NoCarrier
- 2,558
- 4
- 33
- 44
0
votes
1 answer
Pass explicilty Dockerfile to func kubernetes deploy
Is there a way how to pass explicitly Dockerfile to func kubernetes deploy command? (smth like -f in docker build command)
https://learn.microsoft.com/en-us/azure/azure-functions/functions-kubernetes-keda

Andrew K
- 369
- 1
- 3
- 13
0
votes
1 answer
Is there a way to specify custom arguments to docker run command executing inside Azure functions
I'm trying to deploy a custom image to an azure function and I have a requirement of modifying /etc/hosts file inside the container.
I've tried giving --add-host argument at the docker build stage but it doesn't help. And as it is an azure function,…

Spandana Soma
- 13
- 4