sort reverse
All checks were successful
ci-tests/multiAgent-scripted/pipeline/head This commit looks good

This commit is contained in:
2022-02-21 19:10:40 +02:00
parent 27c5bf8092
commit 87fe7e8d12

4
Jenkinsfile vendored
View File

@@ -16,7 +16,9 @@ node {
}
stage('vulnerability scanner') {
sh """
docker run --rm anchore/grype:v0.33.0 debian:wheezy-20170907 | grep -iE 'high|medium'
docker run --rm anchore/grype:v0.33.0 debian:wheezy-20170907 | \
grep -iE 'high|medium' | \
sort -rk 8
"""
}
}