Install¶
Go Native¶
Go Tool (Project-Level)
go get -tool github.com/go-rivet/rivet/cmd/rivet@latest
go tool rivet --version
# Expected output:
Rivet v0.2.0
Commit: ffc9bc74
Built: 2026-05-17T12:32:58Z
Linux/Darwin¶
Automated Install Script¶
Install latest version of Rivet
curl -sSL https://raw.githubusercontent.com/go-rivet/rivet/main/install.sh | sh
Install a specific version of Rivet
RIVET_VERSION="v0.2.0" curl -sSL https://raw.githubusercontent.com/go-rivet/rivet/main/install.sh | sh
Docker¶
Scratch Docker Image¶
Extract binary from scratch
docker create --name temp-rivet ghcr.io/go-rivet/rivet:latest
docker cp temp-rivet:/rivet ./rivet
docker rm temp-rivet
./rivet --version
# Expected output:
Rivet v0.2.0
Commit: ffc9bc74
Built: 2026-05-17T12:32:58Z
Alpine Docker Image¶
Windows¶
Info
To be determined.