Skip to content

Commit 415fbf4

Browse files
Add links
1 parent ba21994 commit 415fbf4

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

articles/machine-learning/how-to-troubleshoot-environments.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,10 @@ To automate this process based on triggers from Microsoft Defender, see [Automat
108108

109109
System-managed environments can have vulnerabilities from their base image. For example, vulnerabilities marked as "Ubuntu", "Debian" etc are usually from the system level of the environment, the base Docker image. If the base image is from a third-party issuer, please check if the latest version has fixes for the flagged vulnerabilities. Most common sources for the base images in AzureML are:
110110

111-
- Microsoft Artifact Registry (MAR) aka Microsoft Container Registry (mcr.microsoft.com). Images can be listed from MAR homepage, calling _catalog API, or [/tags/list](https://mcr.microsoft.com/v2/azureml/openmpi4.1.0-ubuntu20.04/tags/list)
112-
- Nvidia (nvcr.io, or nvidia's Profile | Docker Hub )
111+
- Microsoft Artifact Registry (MAR) aka Microsoft Container Registry (mcr.microsoft.com).
112+
- Images can be listed from MAR homepage, calling _catalog API, or [/tags/list](https://mcr.microsoft.com/v2/azureml/openmpi4.1.0-ubuntu20.04/tags/list)_
113+
- Source and release notes for training base images from AzureML can be found in [Azure/AzureML-Containers](https://github.com/Azure/AzureML-Containers)
114+
- Nvidia (nvcr.io, or [nvidia's Profile](https://hub.docker.com/u/nvidia/#!))
113115

114116
If the latest version of your base image does not resolve your vulnerabilities, base image vulnerabilities can be addressed by installing versions recommended by a vulnerability scan:
115117

@@ -121,7 +123,7 @@ apt-get install -y library_name
121123

122124
Vulnerabilities can also be from installed python packages on top of the system managed base image. These python related vulnerabilities should be resolved by updating your python dependencies. Python (Pip) vulnerabilities in the image usually come from user-defined dependencies.
123125

124-
To search for known python vulnerabilities and solutions please see GitHub Advisory Database. To address python vulnerabilities, update the package to the version that has fixes for the flagged issue:
126+
To search for known python vulnerabilities and solutions please see [GitHub Advisory Database](https://github.com/advisories). To address python vulnerabilities, update the package to the version that has fixes for the flagged issue:
125127

126128
```
127129
pip install -u my_package=={good.version}

0 commit comments

Comments
 (0)