dex/Dockerfile

12 lines
164 B
Docker
Raw Normal View History

2016-08-10 03:56:32 +05:30
FROM alpine:latest
MAINTAINER Eric Chiang <eric.chiang@coreos.com>
RUN apk add --update ca-certificates
2016-08-11 11:01:42 +05:30
COPY bin/dex /dex
2016-08-10 03:56:32 +05:30
2016-08-11 11:01:42 +05:30
ENTRYPOINT ["/dex"]
2016-08-10 03:56:32 +05:30
CMD ["version"]