Building images in Azure DevOps and running them 
in Azure
To support continuous integration and continuous delivery, the source files need to be shared in a repository. So, let’s share the resources in Azure Repos and try to build our container by using Azure Pipelines. After building the container image, a place to store the images and run the container is also required. Within the Azure platform, there are two perfect services for this scenario:
- Azure Container Registry (ACR): This service is a managed private Docker registry based on the open source Docker Registry. Here, you can maintain and register container images.
- Azure Container Instance: Azure Container Instances, also referred to as ACI, is a solution for running isolated containers without a lot of management.
Important Note
For the simplicity of this guide, the files are already added to the repository and the Azure resource is already created.
In the next section, we will explore...