Hello @Eric Huang !
Welcome to Microsoft QnA!
Your deployment appears to have a Dependency that requires the libgomp
shared library, which is not present in the Azure App Service environment.
Look at the Docker solution !
https://learn.microsoft.com/en-us/training/modules/deploy-run-container-app-service/
- Start with a base image that has Python installed.
- Install the necessary system dependencies using
apt-get
or any other method. - Add your Python code and necessary Python packages.
- Push the Docker image to a container registry (like Docker Hub or Azure Container Registry).
- In the Azure App Service, choose to deploy your application using a custom Docker container and point it to your Docker image.
OR :
- Oryx Build: Azure App Service uses Oryx for building and running applications. There's an option to provide custom build scripts, which can sometimes be used to set up specific settings or binaries.
https://github.com/microsoft/Oryx
I hope this helps!
Kindly mark the answer as Accepted and Upvote in case it helped!
Regards