aboutsummaryrefslogtreecommitdiff
path: root/docs/docbuild
diff options
context:
space:
mode:
authorHoward Butler <howard@hobu.co>2018-08-13 09:41:19 -0500
committerHoward Butler <howard@hobu.co>2018-08-13 09:41:19 -0500
commitfe13c01125c57f1a2cd9256f78ee6233891fcec0 (patch)
tree938226cb677c3793ac10472fb782212e91fd5529 /docs/docbuild
parent7a59716b6f25f495e9a7bc2220ea5a887ca71d58 (diff)
downloadPROJ-fe13c01125c57f1a2cd9256f78ee6233891fcec0.tar.gz
PROJ-fe13c01125c57f1a2cd9256f78ee6233891fcec0.zip
Add Dockerfile for osgeo/proj-docs image
Diffstat (limited to 'docs/docbuild')
-rw-r--r--docs/docbuild/Dockerfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/docbuild/Dockerfile b/docs/docbuild/Dockerfile
new file mode 100644
index 00000000..d43039af
--- /dev/null
+++ b/docs/docbuild/Dockerfile
@@ -0,0 +1,13 @@
+FROM ubuntu:18.04
+
+RUN apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
+ python-dev python-pip g++ doxygen dvipng latexmk \
+ cmake libjpeg8-dev zlib1g-dev texlive-latex-base \
+ texlive-latex-extra git \
+ graphviz python-matplotlib
+
+RUN pip install Sphinx breathe \
+ sphinx_bootstrap_theme awscli sphinxcontrib-bibtex \
+ sphinx_rtd_theme
+
+