Files
dockerfiles/dcos-cli/Dockerfile
2017-03-09 10:14:37 -08:00

14 lines
268 B
Docker

FROM alpine:latest
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apk --no-cache add \
ca-certificates \
python \
py2-pip \
&& pip install dcoscli
# path to the DCOS CLI binary
RUN echo 'export PATH=$PATH:/dcos/bin;' >> ~/.bashrc
ENTRYPOINT [ "dcos" ]