Revision 0304d164d86b3982f2cc849d10a95df90d0772b3 authored by Eric Fischer on 29 March 2018, 16:11:20 UTC, committed by GitHub on 29 March 2018, 16:11:20 UTC
Instruction on installing on Ubuntu
2 parent s 3cea125 + d5b0da3
Raw File
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