mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
3c1634b3d0
Signed-off-by: Jess Frazelle <acidburn@google.com>
14 lines
260 B
Docker
14 lines
260 B
Docker
FROM alpine:latest
|
|
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" ]
|