mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
390 B
13 lines
390 B
#!/bin/bash |
|
|
|
mkdir -p _output/bin |
|
|
|
sudo rkt run \ |
|
--volume dex,kind=host,source=$PWD \ |
|
--mount volume=dex,target=/go/src/github.com/coreos/dex \ |
|
--dns=8.8.8.8 \ |
|
--net=host \ |
|
--insecure-options=image \ |
|
docker://golang:1.7.4-alpine \ |
|
--exec=/bin/sh -- -x -c \ |
|
'apk add --no-cache --update alpine-sdk && cd /go/src/github.com/coreos/dex && make release-binary'
|
|
|