aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorHoward Butler <howard@hobu.co>2016-09-08 17:09:37 -0500
committerHoward Butler <howard@hobu.co>2016-09-08 17:09:37 -0500
commit57a07c119ae08945caa92b29c4b427b57f1f728d (patch)
tree48c42cea0453847f4d5c3c3299f95bbd07695dfe /Dockerfile
parent3880c10dab0ec61d5826309edd87a249a689cd82 (diff)
downloadPROJ-57a07c119ae08945caa92b29c4b427b57f1f728d.tar.gz
PROJ-57a07c119ae08945caa92b29c4b427b57f1f728d.zip
update Dockerfile to xenial
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile19
1 files changed, 15 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index b84e312b..fa8156d1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,7 @@
##
# osgeo/proj.4
-FROM ubuntu:vivid
+FROM ubuntu:xenial
MAINTAINER Howard Butler <howard@hobu.co>
@@ -9,8 +9,17 @@ MAINTAINER Howard Butler <howard@hobu.co>
# Setup build env
RUN mkdir /build
RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 16126D3A3E5C1192 \
- && apt-get update && apt-get install -y --fix-missing --no-install-recommends software-properties-common build-essential ca-certificates git make cmake wget unzip libtool automake python-pip libpython-dev libjpeg-dev zlib1g-dev \
- && apt-get remove --purge -y $BUILD_PACKAGES && rm -rf /var/lib/apt/lists/*
+ && apt-get update \
+ && apt-get install -y --fix-missing --no-install-recommends \
+ software-properties-common build-essential ca-certificates \
+ git make cmake wget unzip libtool automake python-pip \
+ libpython-dev libjpeg-dev zlib1g-dev \
+ python-dev python-pip g++ doxygen dvipng \
+ cmake libjpeg8-dev zlib1g-dev texlive-latex-base \
+ texlive-latex-extra git \
+ graphviz python-matplotlib \
+ python-setuptools imagemagick \
+ && apt-get remove --purge -y $BUILD_PACKAGES && rm -rf /var/lib/apt/lists/*
RUN mkdir /vdatum \
@@ -26,7 +35,9 @@ RUN mkdir /vdatum \
&& wget http://download.osgeo.org/proj/vdatum/egm08_25/egm08_25.gtx && mv egm08_25.gtx /usr/share/proj \
&& rm -rf /vdatum
-RUN pip install Sphinx sphinx_bootstrap_theme rst2pdf --upgrade
+RUN pip install Sphinx breathe \
+ sphinx_bootstrap_theme awscli sphinxcontrib-bibtex \
+ sphinx_rtd_theme
RUN git clone https://github.com/OSGeo/proj.4.git \
&& cd proj.4 \