Skip to content

Commit c27cba7

Browse files
committed
update it
1 parent 7efa4c4 commit c27cba7

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ scan-image-json: guard-CONTAINER_NAME guard-BASE_FOLDER
5757
--scanners vuln \
5858
--exit-code 1 \
5959
--format json \
60-
--output .out/scan.out.json "${CONTAINER_PREFIX}$${CONTAINER_NAME}"
60+
--output .out/scan_results_docker.json "${CONTAINER_PREFIX}$${CONTAINER_NAME}"
6161

6262
shell-image: guard-CONTAINER_NAME
6363
docker run -it \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,12 @@ CONTAINER_NAME=fhir_facade_api \
147147
## Generating a .trivyignore file
148148
You can generate a .trivyignore file for known vulnerabilities by either downloading the json scan output generated by the build, or by generating it locally using the scanning images commands above with a make target of scan-image-json
149149

150-
If generated locally, then the output goes into .out/scan.out.json
150+
If generated locally, then the output goes into .out/scan_results_docker.json
151151

152152
Once you have the scan output, use the following to generate a .trivyignore
153153
```
154154
poetry run python \
155155
scripts/trivy_to_trivyignore.py \
156-
--input .out/scan.out.json \
156+
--input .out/scan_results_docker.json \
157157
--output src/common/.trivyignore.yaml
158158
```

src/common/.trivyignore.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,3 +302,8 @@ vulnerabilities:
302302
purls:
303303
- "pkg:deb/ubuntu/linux-libc-dev@5.15.0-170.180?arch=arm64&distro=ubuntu-22.04"
304304
expired_at: 2026-08-12
305+
- id: CVE-2025-68121
306+
statement: "crypto/tls: Unexpected session resumption in crypto/tls"
307+
purls:
308+
- "pkg:golang/stdlib@v1.25.6"
309+
expired_at: 2026-08-13

0 commit comments

Comments
 (0)