File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments