forked from mapbox/tippecanoe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request mapbox#488 from mapbox/test-centos7
Test on centos7 via docker
- Loading branch information
Showing
4 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
.gitignore | ||
.git | ||
Dockerfile | ||
Dockerfile.centos7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
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 |