feat(cve): try to fix unknown operand

This commit is contained in:
Fabian Widmann 2021-07-23 09:55:15 +02:00
parent 7c58ee80be
commit e0dbec82a9

View File

@ -37,7 +37,7 @@
- /kaniko/executor --context $CONTEXT_LOCATION --dockerfile $DOCKERFILE_LOCATION --cache-dir cache/image --tarPath image.tar --no-push --destination image --skip-tls-verify - /kaniko/executor --context $CONTEXT_LOCATION --dockerfile $DOCKERFILE_LOCATION --cache-dir cache/image --tarPath image.tar --no-push --destination image --skip-tls-verify
- echo $IGNORE_UNFIXABLE - echo $IGNORE_UNFIXABLE
- | - |
if [[ $IGNORE_UNFIXED = "true" ]] ; then if [[ $IGNORE_UNFIXED == "true" ]] ; then
echo "detect issues, ignore unfixed issues"; echo "detect issues, ignore unfixed issues";
./trivy --cache-dir .trivycache/ --ignore-unfixed --exit-code 0 --cache-dir .trivycache/ --severity HIGH,CRITICAL --no-progress --format template --template "@contrib/junit.tpl" -o junit-report.xml --input image.tar ./trivy --cache-dir .trivycache/ --ignore-unfixed --exit-code 0 --cache-dir .trivycache/ --severity HIGH,CRITICAL --no-progress --format template --template "@contrib/junit.tpl" -o junit-report.xml --input image.tar
./trivy --cache-dir .trivycache/ --ignore-unfixed --exit-code $EXITCODE --severity HIGH,CRITICAL --no-progress --auto-refresh --input image.tar ./trivy --cache-dir .trivycache/ --ignore-unfixed --exit-code $EXITCODE --severity HIGH,CRITICAL --no-progress --auto-refresh --input image.tar