mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
4ade5b9b48
Signed-off-by: Jess Frazelle <jess@mesosphere.com>
15 lines
294 B
Docker
15 lines
294 B
Docker
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" ]
|