blob: 970da58d7cfb53285a81903fa6299e0d87065f20 [file] [log] [blame]
giolekva95340e82021-11-08 21:36:55 +04001clone:
2 git clone --depth 1 --branch v0.0.20 https://github.com/ory/hydra-maester.git
3
4push_arm64: export GOOS=linux
5push_arm64: export GOARCH=arm64
6push_arm64: export CGO_ENABLED=0
7push_arm64: export GO111MODULE=on
8build:
9 cd hydra-maester && go build -o manager main.go
10
11image_arm64: build
12 docker build --tag=giolekva/ory-hydra-maester:latest . --platform=linux/arm64
13
14push_arm64: image_arm64
15 docker push giolekva/ory-hydra-maester:latest