1
0
mirror of https://github.com/dvddarias/docker-hoster synced 2026-08-05 16:12:43 +02:00

Initial commit

This commit is contained in:
David Darias
2015-11-02 21:27:37 -05:00
parent f38c040d39
commit 5e6a2919bf
2 changed files with 131 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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"]