Skip to content

Commit c3f1ab5

Browse files
author
naman-msft
committed
updated docs
1 parent a1dc2fd commit c3f1ab5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scenarios/CreateContainerAppDeploymentFromSource/create-container-app-deployment-from-source.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,8 @@ export COMPUTER_VISION_KEY=$(az cognitiveservices account keys list --name $MY_C
419419
Now that we've got our storage, database, and Computer Vision resources all set up, we are ready to deploy the application code. To do this, we're going to use Azure Container Apps to host a containerized build of our Next.js app. The `Dockerfile` is already created at the root of the repository, so all we need to do is run a single command to deploy the code. Before running this command, we first need to install the containerapp extension for the Azure CLI.
420420

421421
```bash
422-
az extension add --upgrade -n containerapp
422+
az config set extension.dynamic_install_allow_preview=true
423+
az extension add --upgrade -n containerapp --debug
423424
```
424425

425426
This command will create an Azure Container Registry resource to host our Docker image, an Azure Container App resource which runs the image, and an Azure Container App Environment resource for our image. Let's break down what we're passing into the command.

0 commit comments

Comments
 (0)