dex/Dockerfile

12 lines
197 B
Text
Raw Normal View History

2016-10-05 18:23:15 -07:00
FROM alpine:3.4
2016-08-09 15:26:32 -07:00
MAINTAINER Eric Chiang <eric.chiang@coreos.com>
RUN apk add --update ca-certificates
2016-10-05 18:23:15 -07:00
COPY _output/bin/dex /usr/local/bin/dex
2016-08-09 15:26:32 -07:00
2016-10-05 18:23:15 -07:00
ENTRYPOINT ["/usr/local/bin/dex"]
2016-08-09 15:26:32 -07:00
CMD ["version"]