Skip to content

Commit 14bcca5

Browse files
committed
Fix code highlight and directory path
1 parent cdcac7b commit 14bcca5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/aca/01-deploy-api-to-aca/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ In this module, we will start by creating the first microservice named `ACA Web
5555
5656
=== "Program.cs"
5757
58-
```csharp hl_lines="5"
58+
```csharp hl_lines="1 5"
5959
using TasksTracker.TasksManager.Backend.Api.Services;
6060
6161
var builder = WebApplication.CreateBuilder(args);
@@ -73,7 +73,7 @@ In this module, we will start by creating the first microservice named `ACA Web
7373
```
7474
- From VS Code Terminal tab, open developer command prompt or PowerShell terminal and navigate to the parent directory which hosts the `.csproj` project folder and build the project.
7575
```shell
76-
cd {YourLocalPath}\TasksTracker.TasksManager.Backend.Api
76+
cd {YourLocalPath}\TasksTracker.ContainerApps\TasksManager.Backend.Api
7777
dotnet build
7878
```
7979
Make sure that the build is successful and that there are no build errors. Usually you should see a "Build succeeded" message in the terminal upon a successful build.
@@ -178,7 +178,7 @@ We will be using Azure CLI to deploy the Web API Backend to ACA as shown in the
178178
179179
```shell
180180
cd {YourLocalPath}\TasksTracker.ContainerApps
181-
az acr build --registry $ACR_NAME --image "tasksmanager/$BACKEND_API_NAME" --file 'TasksTracker.TasksManager.Backend.Api/Dockerfile' .
181+
az acr build --registry $ACR_NAME --image "tasksmanager/$BACKEND_API_NAME" --file 'TasksManager.Backend.Api/Dockerfile' .
182182
```
183183
Once this step is completed you can verify the results by going to the Azure portal and checking that a new repository named `tasksmanager/tasksmanager-backend-api` has been created and there is a new docker image with a `latest` tag is created.
184184

0 commit comments

Comments
 (0)