*: prepare build scripts for a release

This commit is contained in:
Eric Chiang
2016-10-05 18:23:15 -07:00
parent c50b44cf8f
commit 0fc8879da1
7 changed files with 157 additions and 14 deletions

View File

@@ -1,11 +1,11 @@
FROM alpine:latest
FROM alpine:3.4
MAINTAINER Eric Chiang <eric.chiang@coreos.com>
RUN apk add --update ca-certificates
COPY bin/dex /dex
COPY _output/bin/dex /usr/local/bin/dex
ENTRYPOINT ["/dex"]
ENTRYPOINT ["/usr/local/bin/dex"]
CMD ["version"]