Revision 90afdf8fb27dd20321f76ed6893ea6eda716f3a1 authored by Eric Fischer on 20 February 2019, 20:06:06 UTC, committed by Eric Fischer on 20 February 2019, 20:06:06 UTC
2 parent s 8df0455 + 454f75e
Raw File
Dockerfile.centos7
FROM centos:7

RUN yum install -y make sqlite-devel zlib-devel bash git gcc-c++

# 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