Book Image

A Developer's Guide to Cloud Apps Using Microsoft Azure

By : Hamida Rebai Trabelsi
Book Image

A Developer's Guide to Cloud Apps Using Microsoft Azure

By: Hamida Rebai Trabelsi

Overview of this book

Companies face several challenges during cloud adoption, with developers and architects needing to migrate legacy applications and build cloud-oriented applications using Azure-based technologies in different environments. A Developer’s Guide to Cloud Apps Using Microsoft Azure helps you learn how to migrate old apps to Azure using the Cloud Adoption Framework and presents use cases, as well as build market-ready secure and reliable applications. The book begins by introducing you to the benefits of moving legacy apps to the cloud and modernizing existing ones using a set of new technologies and approaches. You’ll then learn how to use technologies and patterns to build cloud-oriented applications. This app development book takes you on a journey through three major services in Azure, namely Azure Container Registry, Azure Container Instances, and Azure Kubernetes Service, which will help you build and deploy an application based on microservices. Finally, you’ll be able to implement continuous integration and deployment in Azure to fully automate the software delivery process, including the build and release processes. By the end of this book, you’ll be able to perform application migration assessment and planning, select the right Azure services, and create and implement a new cloud-oriented application using Azure containers and orchestrators.
Table of Contents (20 chapters)
1
Part 1 – Migrating Applications to Azure
6
Part 2 – Building Cloud-Oriented Applications Using Patterns and Technologies in Azure
10
Part 3 – PaaS versus CaaS to Deploy Containers in Azure
14
Part 4 – Ensuring Continuous Integration and Continuous Deployment on Azure
17
Assessments

Exploring the elements of a Dockerfile

A Dockerfile contains all the instructions needed to build a Docker image. This includes copying our source, making changes to the base image such as adding new packages or updates, exposing necessary reports, and configuring environment variables.

The Add, CMD, Entry point, ENV, EXPOSE, FROM, MAINTAINER, RUN, USER, VOLUME, and WORKDIR commands are available in a Dockerfile.

This is an example of a Dockerfile:

Figure 8.23 – A Dockerfile sample

Figure 8.23 – A Dockerfile sample

Let’s understand these elements of a Dockerfile in detail:

  • FROM mcr.microsoft.com/dotnet/sdk:6.0: The Dockerfile always starts with the FROM command. It initializes a new build stage and sets the base image that we are going to build upon.
  • WORKDIR /source: The WORKDIR command simply sets the current working directory inside our image. In this case, it is the /source folder, which is the root of our solution.
  • COPY *.sln . and COPY aspnetapp...