tippecanoe/Dockerfile

20 lines
404 B
Docker
Raw Normal View History

2017-05-17 21:02:26 +00:00
# Start from ubuntu
FROM ubuntu:16.04
2017-05-17 21:02:26 +00:00
# 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
2017-11-07 17:44:25 +00:00
# Run the tests
2017-11-01 20:42:42 +00:00
CMD make test