Revision 1c4aa57ffd854036f8d1416a77361bd58300ba01 authored by Eric Fischer on 16 March 2018, 20:43:21 UTC, committed by Eric Fischer on 16 March 2018, 20:43:21 UTC
1 parent 623e0c9
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