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/Dockerfile

12 lines
164 B
Docker
Raw Normal View History

2016-08-09 22:26:32 +00:00
FROM alpine:latest
MAINTAINER Eric Chiang <eric.chiang@coreos.com>
RUN apk add --update ca-certificates
2016-08-11 05:31:42 +00:00
COPY bin/dex /dex
2016-08-09 22:26:32 +00:00
2016-08-11 05:31:42 +00:00
ENTRYPOINT ["/dex"]
2016-08-09 22:26:32 +00:00
CMD ["version"]