diff options
| author | Howard Butler <howard@hobu.co> | 2016-09-08 17:09:37 -0500 |
|---|---|---|
| committer | Howard Butler <howard@hobu.co> | 2016-09-08 17:09:37 -0500 |
| commit | 57a07c119ae08945caa92b29c4b427b57f1f728d (patch) | |
| tree | 48c42cea0453847f4d5c3c3299f95bbd07695dfe /Dockerfile | |
| parent | 3880c10dab0ec61d5826309edd87a249a689cd82 (diff) | |
| download | PROJ-57a07c119ae08945caa92b29c4b427b57f1f728d.tar.gz PROJ-57a07c119ae08945caa92b29c4b427b57f1f728d.zip | |
update Dockerfile to xenial
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 19 |
1 files changed, 15 insertions, 4 deletions
@@ -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 \ |
