mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 03:21:28 +01:00
7eea00edf3
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
14 lines
268 B
Docker
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" ]
|