add dcos cli

Signed-off-by: Jess Frazelle <jess@mesosphere.com>
This commit is contained in:
Jess Frazelle 2016-03-21 17:28:42 -07:00
parent 949109eead
commit 4ade5b9b48
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

14
dcos-cli/Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM alpine:latest
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apk update && apk add \
ca-certificates \
python \
py-pip \
&& rm -rf /var/cache/apk/* \
&& pip install dcoscli
# path to the DCOS CLI binary
RUN echo 'export PATH=$PATH:/dcos/bin;' >> ~/.bashrc
ENTRYPOINT [ "dcos" ]