You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,8 @@ sudo awf --help
31
31
32
32
**Note:** Verify checksums after download by downloading `checksums.txt` from the release page.
33
33
34
+
**Docker Image Verification:** All published container images are cryptographically signed with cosign. See [docs/image-verification.md](docs/image-verification.md) for verification instructions.
For detailed instructions including SBOM verification, see [docs/image-verification.md](https://github.com/{{REPOSITORY}}/blob/{{VERSION}}/docs/image-verification.md).
All published Docker images are signed with [cosign](https://github.com/sigstore/cosign) using keyless signing. You can verify the signatures to ensure image authenticity and integrity.
4
+
5
+
## Installing Cosign
6
+
7
+
### Package Managers (Recommended)
8
+
9
+
```bash
10
+
# Homebrew (macOS/Linux)
11
+
brew install cosign
12
+
13
+
# Debian/Ubuntu
14
+
sudo apt update && sudo apt install -y cosign
15
+
```
16
+
17
+
See the [official installation guide](https://docs.sigstore.dev/cosign/installation/) for all installation options.
18
+
19
+
### Direct Download
20
+
21
+
```bash
22
+
# Quick install for testing (verify checksums from GitHub release page for production)
0 commit comments