A vulnerability scanner for container images and filesystems.

Usage in a pipeline:
pipeline
{
 agent any
 options {
 skipStagesAfterUnstable()
}
stages
{
 stage('Build')
 {
  steps
  {
  step([$class: 'GrypeScannerStep', scanDest: 'dir:/tmp', repName: 'myScanResult.txt'])
  }
 }
}
}