Skip to content

Commit 416157c

Browse files
committed
Acrolinx
1 parent 48ccd3c commit 416157c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-app-configuration/quickstart-container-apps.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To create the container app and container apps environment using the Azure CLI,
4141

4242
## Connect Azure Container Apps to Azure App Configuration
4343

44-
In the next step, you will add the connection string of your App Configuration store to the secret of your Container App and add an environment variable to your container to reference the secret. You use the [Service Connector](../service-connector/overview.md) to do this in a few steps without managing the connection information yourself.
44+
In the next step, you'll add the connection string of your App Configuration store to the secret of your Container App and add an environment variable to your container to reference the secret. You use the [Service Connector](../service-connector/overview.md) to do this in a few steps without managing the connection information yourself.
4545

4646
In the Azure portal, connect the container app to Azure App Configuration following the [Service Connector quickstart for Azure Container Apps](../service-connector/quickstart-portal-container-apps.md). While following the steps of the quickstart:
4747

@@ -66,7 +66,7 @@ Once done, an environment variable named **ConnectionStrings__AppConfig** will b
6666
dotnet publish -c Release -o published
6767
```
6868
69-
1. Create a file named *Dockerfile* in the directory containing your .csproj file, open it in a text editor, and enter the content below. A Dockerfile is a text file that doesn't have an extension and that is used to create a container image.
69+
1. Create a file named *Dockerfile* in the directory containing your .csproj file, open it in a text editor, and enter the following content. A Dockerfile is a text file that doesn't have an extension and that is used to create a container image.
7070
7171
```docker
7272
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS runtime
@@ -75,7 +75,7 @@ Once done, an environment variable named **ConnectionStrings__AppConfig** will b
7575
ENTRYPOINT ["dotnet", "TestAppConfig.dll"]
7676
```
7777
78-
1. Build the container by running the command below
78+
1. Build the container by running the following command.
7979
8080
```docker
8181
docker build --tag aspnetapp .

0 commit comments

Comments
 (0)