Skip to content

Commit

Permalink
Merge pull request #673 from msftnutta/master
Browse files Browse the repository at this point in the history
Update AZ-204_lab_05.md
  • Loading branch information
msftnutta committed Jun 6, 2023
2 parents 1aa636a + 9d08942 commit 20b82e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Instructions/Labs/AZ-204_lab_05.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 20b82e9

Please sign in to comment.