scan
Generate SPDX SBOM for container images using Trivy scanner. Supports SPDX JSON format for detailed software inventory and compliance tracking.
Instructions
Execute Trivy scanner to generate SPDX SBOM for a container image.
Supports the SPDX JSON format.
Args:
image (str): The container image name/reference to scan
Returns:
str: Test response or error message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image | Yes |
Input Schema (JSON Schema)
{
"properties": {
"image": {
"title": "Image",
"type": "string"
}
},
"required": [
"image"
],
"title": "scanArguments",
"type": "object"
}