We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ee005a commit 87ebfcdCopy full SHA for 87ebfcd
2 files changed
docker/trivy/Dockerfile
@@ -2,4 +2,5 @@ ARG TRIVY_VERSION=latest
2
FROM aquasec/trivy:${TRIVY_VERSION}
3
4
# Download the vulnerability DB at build time
5
-RUN trivy image --download-db-only
+RUN trivy image --download-db-only && \
6
+ trivy image --download-java-db-only
kargo/custom-steps/trivy-image/trivy-image.yaml
@@ -11,5 +11,6 @@ spec:
11
- --severity=CRITICAL
12
- --disable-telemetry
13
- --skip-db-update
14
+ - --skip-java-db-update
15
- --scanners=vuln
16
- ${{ config.image }}
0 commit comments