How to deploy an api server in azure app service using dockers, by building an image directly from python directory?

u3596231@connect.hku.hk 0 Reputation points
2024-06-05T12:22:39.7266667+00:00

I want to deploy an API server using the azure app service, but with a few caveats:

When I deploy this server locally, I'm using a package called langgraph-cli, (all I need is type the command "langgraph up" in terminal)which directly loads the server. Internally this package uses docker and builds the API server by creating 3 docker containers. I want to know how I could deploy this server on cloud using azure.

First, can this be done with Azure app service where I deploy from code?

i.e. in the Azure cloud shell, can I first git clone my repository, then download dockers, pip install all the requirements(including the langgraph-cli package), and build and run the image directly from Azure cloud shell?
Or this is not viable and I have to use azure VM?

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,408 questions
{count} votes

1 answer

Sort by: Most helpful
  1. ajkuma 24,971 Reputation points Microsoft Employee
    2024-06-10T19:40:16.29+00:00

    Apologies for the delayed response.

    Based on my understanding of you scenario description, you may have to customize and leverage the following service approach:

    Migrate custom software to Azure App Service using a custom container

    User's image

    Ref: Deploy a containerized Python app to App Service

    Azure App Service supports the deployment of Docker containers. You can create a new App Service and configure it to use the Docker image you pushed to ACR.

    Please note that while Azure App Service does support the deployment of Docker containers, there are some limitations compared to using a full-fledged VM, such as restrictions imposed by the App Service sandbox. For control over the underlying host VM, you may consider to use Azure VM or another Azure service that supports Docker containers, such as Azure Kubernetes Service (AKS) or Azure Container Instances (ACI), or Azure Container Apps

    Azure Cloud Shell has some limitations, such as limited disk space and limited runtime (FAQs).

    Kindly let us know, I'll be happy to follow-up further.


    If the answer helped (pointed, you in the right direction) > please click Accept Answer - it will benefit community members to find the answers quickly. 

    0 comments No comments