File tree 2 files changed +27
-2
lines changed
2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change
1
+ FROM python:2.7
2
+
3
+ RUN apt-get update && \
4
+ apt-get install -y \
5
+ dvipng \
6
+ latex-cjk-japanese \
7
+ omake \
8
+ python-sphinx \
9
+ texlive-latex-extra && \
10
+ rm -rf /var/lib/apt/lists/*
11
+
12
+ RUN pip install -U \
13
+ Sphinx==1.4.3 \
14
+ sphinx_rtd_theme \
15
+ sphinxcontrib-blockdiag \
16
+ sphinxcontrib-rubydomain
17
+
18
+ ENTRYPOINT cd /data && omake clean html
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ Feel free to make pull-requests to this repository.
14
14
Requirements
15
15
------------
16
16
17
- * Sphinx 1.1.3 + pngmath + blockdiag + sphinx_rtd_theme
17
+ * Python 2.7 + Sphinx 1.4.3 + blockdiag + sphinx_rtd_theme
18
18
19
- Easy setup for Ubuntu 12 .04 systems:
19
+ Easy setup for Ubuntu 16 .04 systems:
20
20
21
21
```
22
22
# apt-get install python-sphinx latex-cjk-japanese texlive-latex-extra dvipng
@@ -59,6 +59,13 @@ For Jubatus members: you can deploy it to http://jubat.us/ website.
59
59
$ ./publish.sh
60
60
```
61
61
62
+ How to Build using Docker
63
+ -------------------------
64
+
65
+ ```
66
+ $ docker build -t website-builder .
67
+ $ docker run --rm -v $PWD:/data website-builder
68
+ ```
62
69
63
70
Copyright
64
71
---------
You can’t perform that action at this time.
0 commit comments