Skip to content

Instantly share code, notes, and snippets.

@thomasdarimont
Created February 23, 2019 10:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasdarimont/0c9b22ee9cf40df6306ba3e157052c64 to your computer and use it in GitHub Desktop.
Save thomasdarimont/0c9b22ee9cf40df6306ba3e157052c64 to your computer and use it in GitHub Desktop.
Build Keycloak Gatekeeper for Windows, Linux and OSX

Build keycloak-gatekeeper

Get the code

git clone https://github.com/keycloak/keycloak-gatekeeper

or 

go get -u github.com/keycloak/keycloak-gatekeeper

Building for linux

GOOS=linux GOARCH=amd64 go build -o keycloak-gatekeeper-linux 

Building for OSX

GOOS=darwin GOARCH=amd64 go build -o keycloak-gatekeeper-darwin 

Building for Windows

GOOS=windows GOARCH=amd64 go build -o keycloak-gatekeeper-windows.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment