*: add dockerfile

This commit is contained in:
Eric Chiang
2016-08-09 15:26:32 -07:00
parent e58a3d24a4
commit 9a5b25b27f
2 changed files with 27 additions and 1 deletions

11
Dockerfile Normal file
View File

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