https://github.com/mapbox/tippecanoe
Raw File
Tip revision: baf8ccd6a2a0aa2233304a7946973016576ea60a authored by Eric Fischer on 31 May 2019, 22:40:31 UTC
Add a feature to extract elements from array attributes by zoom level
Tip revision: baf8ccd
Dockerfile
# Start from ubuntu
FROM ubuntu:16.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

# Run the tests
CMD make test
back to top