Skip to content

Commit e61382e

Browse files
authored
Merge pull request #8054 from heatherbshapiro/patch-4
updated conda dependency to manifest command
2 parents 47fea21 + 9179bb6 commit e61382e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/desktop-workbench/tutorial-classifying-iris-part-3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ First, register the model. Then generate the manifest, build the Docker image, a
271271
To create a manifest, use the following command and provide the model ID output from the previous step:
272272

273273
```azurecli
274-
az ml manifest create --manifest-name <new manifest name> -f score_iris.py -r python -i <model ID> -s service_schema.json
274+
az ml manifest create --manifest-name <new manifest name> -f score_iris.py -r python -i <model ID> -s service_schema.json -c aml_config\conda_dependencies.yml
275275
```
276276
This command generates a manifest ID.
277277

@@ -280,7 +280,7 @@ First, register the model. Then generate the manifest, build the Docker image, a
280280
To create a Docker image, use the following command and provide the manifest ID value output from the previous step. You also can optionally include the conda dependencies by using the `-c` switch.
281281

282282
```azurecli
283-
az ml image create -n irisimage --manifest-id <manifest ID> -c aml_config\conda_dependencies.yml
283+
az ml image create -n irisimage --manifest-id <manifest ID>
284284
```
285285
This command generates a Docker image ID.
286286

0 commit comments

Comments
 (0)