Skip to content

Commit b1a4841

Browse files
porridgeclaude
andauthored
Add installation examples to README (#207)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent ad710b4 commit b1a4841

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,27 @@ roxie has been authored with significant AI contributions.
2222
- Handles Quay image pull secrets automatically.
2323
- Verifies image existence before attempting deployment.
2424

25+
## Installation
26+
27+
### Download from GitHub releases
28+
29+
```bash
30+
curl -fsSL --retry 5 --retry-all-errors -o /usr/local/bin/roxie \
31+
https://github.com/stackrox/roxie/releases/download/v0.4.0/roxie-linux-amd64
32+
chmod +x /usr/local/bin/roxie
33+
```
34+
35+
### Copy from container image in a Dockerfile
36+
37+
```dockerfile
38+
ARG ROXIE_VERSION=0.4.0
39+
ARG ROXIE_CHECKSUM=sha256:5fe1d6d4d9c0e33385d8ca9de4baa14b4893cc5f27ddb6a3bddfe5021017fbf5
40+
FROM quay.io/rhacs-eng/roxie:v${ROXIE_VERSION}@${ROXIE_CHECKSUM} AS roxie-installer
41+
42+
FROM <your-base-image>
43+
COPY --from=roxie-installer /usr/local/bin/roxie /usr/bin/roxie
44+
```
45+
2546
## Quick start
2647

2748
### Option 1: Deploying using image (Recommended for non-developers)

0 commit comments

Comments
 (0)