This repository has been archived on 2023-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
dex/scripts/rkt-build

14 lines
390 B
Plaintext
Raw Normal View History

2016-10-06 01:23:15 +00:00
#!/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.3-alpine \
2016-10-06 01:23:15 +00:00
--exec=/bin/sh -- -x -c \
'apk add --no-cache --update alpine-sdk && cd /go/src/github.com/coreos/dex && make release-binary'