From 4016876670480852d6a76f82014ea88017fff109 Mon Sep 17 00:00:00 2001 From: Matt Burke Date: Wed, 17 May 2017 17:02:26 -0400 Subject: [PATCH 1/2] Added dockerfile --- .dockerignore | 4 ++++ Dockerfile | 24 ++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .dockerignore create mode 100644 Dockerfile diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..8ff29f1 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,4 @@ +# Don't copy Dockerfile or git items +.gitignore +.git +Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8ac9ae5 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,24 @@ +# Start from ubuntu +FROM ubuntu:17.04 + +# Update repos and install dependencies +RUN apt-get update \ + && apt-get -y upgrade \ + && apt-get -y install build-essential libsqlite3-dev zlib1g-dev + +# Create a directory and copy in all files +RUN mkdir -p /tmp/tippecanoe-src +WORKDIR /tmp/tippecanoe-src +COPY . /tmp/tippecanoe-src + +# Build tippecanoe +RUN make \ + && make install + +# Remove the temp directory and unneeded packages +WORKDIR / +RUN rm -rf /tmp/tippecanoe-src \ + && apt-get -y remove --purge build-essential && apt-get -y autoremove + +# Run the default command to show usage +CMD tippecanoe --help From 1bb31882fa1e0d778edcaca64efa62a8995957ac Mon Sep 17 00:00:00 2001 From: Matt Burke Date: Thu, 18 May 2017 09:48:37 -0400 Subject: [PATCH 2/2] Added docker information to the README --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 0d5745e..1debe76 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,24 @@ You can concatenate multiple GeoJSON features or files together, and it will parse out the features and ignore whatever other objects it encounters. +Docker Image +------------ + +A tippecanoe Docker image can be built from source and executed as a task to +automatically install dependencies and allow tippecanoe to run on any system +supported by Docker. + +```docker +$ docker build -t tippecanoe:latest . +$ docker run -it --rm \ + -v /tiledata:/data \ + tippecanoe:latest \ + tippecanoe --output=/data/output.mbtiles /data/example.geojson +``` + +The commands above will build a Docker image from the source and compile the +latest version. The image supports all tippecanoe flags and options. + Options -------