diff --git a/Instructions/Labs/AZ-204_lab_05.md b/Instructions/Labs/AZ-204_lab_05.md index 6d12dbbf..651ce7a7 100644 --- a/Instructions/Labs/AZ-204_lab_05.md +++ b/Instructions/Labs/AZ-204_lab_05.md @@ -105,7 +105,7 @@ In this lab, you will explore how to create and deploy containers to the Azure C 1. Run the following command to create a new .NET console application in the current directory: ``` - dotnet new console --output . --name ipcheck --framework net6.0 + dotnet new console --output . --name ipcheck --framework net7.0 ``` 1. Run the following command to create a new file in the **\~/clouddrive/ipcheck** directory named **Dockerfile**: @@ -172,7 +172,7 @@ In this lab, you will explore how to create and deploy containers to the Azure C ``` # Start using the .NET 6 SDK container image - FROM mcr.microsoft.com/dotnet/sdk:6.0-alpine AS build + FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build # Change current working directory WORKDIR /app