summaryrefslogtreecommitdiff
path: root/Dockerfile-docs
diff options
context:
space:
mode:
authorBen Firshman <ben@firshman.co.uk>2016-11-07 18:07:00 -0800
committerBen Firshman <ben@firshman.co.uk>2016-11-22 17:05:43 +0000
commitc7a3aa7e446536e048bc02ca881ec14016f08675 (patch)
tree358f56ca9392e037eed48524d19d9460590daf16 /Dockerfile-docs
parent1984f68730512a1c07017118f4e229c7949ff8a8 (diff)
downloaddocker-py-c7a3aa7e446536e048bc02ca881ec14016f08675.tar.gz
Add new Sphinx documentation
Initial work thanks to @aanand. Signed-off-by: Ben Firshman <ben@firshman.co.uk>
Diffstat (limited to 'Dockerfile-docs')
-rw-r--r--Dockerfile-docs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Dockerfile-docs b/Dockerfile-docs
index 1103ffd..705649f 100644
--- a/Dockerfile-docs
+++ b/Dockerfile-docs
@@ -1,8 +1,11 @@
-FROM python:2.7
+FROM python:3.5
RUN mkdir /home/docker-py
WORKDIR /home/docker-py
+COPY requirements.txt /home/docker-py/requirements.txt
+RUN pip install -r requirements.txt
+
COPY docs-requirements.txt /home/docker-py/docs-requirements.txt
RUN pip install -r docs-requirements.txt