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.
15 lines
373 B
15 lines
373 B
#!/bin/bash -e |
|
|
|
mkdir -p _output/bin |
|
|
|
sudo docker run \ |
|
--cidfile=cid \ |
|
-v $PWD:/go/src/github.com/coreos/dex:ro \ |
|
-w /go/src/github.com/coreos/dex \ |
|
golang:1.8.0-alpine \ |
|
/bin/sh -x -c \ |
|
'apk add --no-cache --update alpine-sdk && make release-binary' |
|
|
|
sudo docker cp $( cat cid ):/go/bin/dex _output/bin/dex |
|
sudo docker rm $( cat cid ) |
|
sudo rm cid
|
|
|