Skip to content

Commit d8c8ccc

Browse files
committed
added: Clair image scanner and update dependencies
1 parent 8163c36 commit d8c8ccc

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/build.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
scanners: "vuln"
105105

106106
- name: Upload Trivy report📊
107-
uses: actions/upload-artifact@v4
107+
uses: actions/upload-artifact@v4.3.3
108108
with:
109109
name: trivy-sbom-report
110110
path: "${{ github.workspace }}/dependency-results.sbom.json"
@@ -144,6 +144,16 @@ jobs:
144144
with:
145145
sarif_file: snyk.sarif
146146

147+
- name: Analyze image with Clair💊
148+
run: |
149+
docker run -d --name db arminc/clair-db
150+
sleep 15
151+
docker run -p 6060:6060 --link db:postgres -d --name clair arminc/clair-local-scan
152+
sleep 1
153+
DOCKER_GATEWAY=$(docker network inspect bridge --format "{{range .IPAM.Config}}{{.Gateway}}{{end}}")
154+
wget -qO clair-scanner https://github.com/arminc/clair-scanner/releases/download/v8/clair-scanner_linux_amd64 && chmod +x clair-scanner
155+
./clair-scanner --ip="$DOCKER_GATEWAY" ghcr.io/ammnt/nginx:main || exit 0
156+
147157
- name: Push the Docker images to registries💾
148158
run: |
149159
docker push ghcr.io/ammnt/nginx:main

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ https://github.com/openssl/openssl
2525
- Added OCI labels and annotations;
2626
- No excess ENTRYPOINT in the image;
2727
- Slimmed version by Docker Slim tool;
28-
- Scanned by vulnerability scanners: GitHub, Docker Scout, Snyk, Anchore and Syft;
28+
- Scanned by vulnerability scanners: GitHub, Docker Scout, Snyk, Anchore, Clair and Syft;
2929
- Prioritize ChaCha cipher patch and anonymous signature - removed "Server" header ("banner"):<br>
3030
https://github.com/ammnt/nginx/blob/http3/Dockerfile
3131

0 commit comments

Comments
 (0)