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.
Files
Documentation
api
cmd
connector
examples
scripts
build-aci
get-protoc
git-version
rkt-build
server
storage
vendor
version
web
.gitignore
.travis.yml
DCO
Dockerfile
LICENSE
Makefile
README.md
glide.lock
glide.yaml
glide_test.go
dex/scripts/rkt-build
2016-11-03 12:28:53 -07:00

14 lines
390 B
Bash
Executable File

#!/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 \
--exec=/bin/sh -- -x -c \
'apk add --no-cache --update alpine-sdk && cd /go/src/github.com/coreos/dex && make release-binary'