File tree 3 files changed +16
-1
lines changed
3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change
1
+ FROM python:2.7
2
+
3
+ RUN mkdir /home/docker-py
4
+ WORKDIR /home/docker-py
5
+
6
+ COPY docs-requirements.txt /home/docker-py/docs-requirements.txt
7
+ RUN pip install -r docs-requirements.txt
8
+
9
+ COPY . /home/docker-py
Original file line number Diff line number Diff line change 13
13
build-py3 :
14
14
docker build -t docker-py3 -f Dockerfile-py3 .
15
15
16
+ build-docs :
17
+ docker build -t docker-py-docs -f Dockerfile-docs .
18
+
16
19
build-dind-certs :
17
20
docker build -t dpy-dind-certs -f tests/Dockerfile-dind-certs .
18
21
@@ -57,3 +60,6 @@ integration-dind-ssl: build-dind-certs build build-py3
57
60
58
61
flake8 : build
59
62
docker run docker-py flake8 docker tests
63
+
64
+ docs : build-docs
65
+ docker run -v ` pwd` /docs:/home/docker-py/docs/ -p 8000:8000 docker-py-docs mkdocs serve -a 0.0.0.0:8000
Original file line number Diff line number Diff line change 1
- mkdocs==0.9
1
+ mkdocs==0.15.3
You can’t perform that action at this time.
0 commit comments