Skip to content

Instantly share code, notes, and snippets.

Created March 20, 2016 15:53
Show Gist options
  • Save anonymous/77e12e866157860a8cfb to your computer and use it in GitHub Desktop.
Save anonymous/77e12e866157860a8cfb to your computer and use it in GitHub Desktop.
FROM ubuntu
Maintainer Poul Kjeldager Sørensen
RUN apt-get update && apt-get install -y \
automake \
build-essential \
libboost-all-dev \
git \
wget
RUN wget http://download.osgeo.org/gdal/1.11.4/gdal-1.11.4.tar.gz
RUN tar xvfz gdal-1.11.4.tar.gz
RUN cd gdal-1.11.4
RUN ./configure
RUN make
RUN make install
RUN ldconfig
RUN cd ..
RUN git clone https://github.com/gina-alaska/dans-gdal-scripts.git
RUN cd dans-gdal-scripts/
RUN ./autogen.sh
RUN ./configure
RUN make
RUN make install
VOLUME /data
WORKDIR /data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment