1
0
mirror of https://github.com/dvddarias/docker-hoster synced 2026-08-05 16:12:43 +02:00
Files
docker-hoster/Dockerfile
T
David Darias 5e6a2919bf Initial commit
2015-11-02 21:27:37 -05:00

15 lines
266 B
Docker

FROM debian:8.0
RUN apt-get update \
&& apt-get install -y --no-install-recommends python3.4 python3-pip \
&& pip3 install docker-py \
&& rm -rf /var/lib/apt/lists/*
VOLUME ["/dockerfiles"]
ENTRYPOINT ["/dockerfiles/entrypoint.sh"]
CMD ["python3"]