Skip to content

Instantly share code, notes, and snippets.

@pksorensen
Forked from anonymous/.dockerfile
Last active March 20, 2016 16:13
Show Gist options
  • Save pksorensen/8efe8300cf91aa287501 to your computer and use it in GitHub Desktop.
Save pksorensen/8efe8300cf91aa287501 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
WORKDIR gdal-1.11.4
RUN ./configure
RUN make
RUN make install
RUN ldconfig
WORKDIR /
RUN git clone https://github.com/gina-alaska/dans-gdal-scripts.git
WORKDIR dans-gdal-scripts
RUN ./autogen.sh
RUN ./configure
RUN make
RUN make install
WORKDIR /data
VOLUME /data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment