mirror of
https://github.com/maplibre/martin.git
synced 2024-12-20 05:11:57 +03:00
c5c2687873
This is a far simpler CI path: * Compiles Ubuntu targets outside of docker * Copies targets into appropriate docker image * No compilation inside docker - makes it far faster * Runs all integration tests on all platforms using emulation against host-based postgis Fixes #655
8 lines
260 B
Docker
8 lines
260 B
Docker
FROM ubuntu:latest
|
|
ARG TARGETPLATFORM
|
|
|
|
LABEL org.opencontainers.image.description="Blazing fast and lightweight tile server with PostGIS, MBTiles, and PMTiles support"
|
|
COPY target_releases/$TARGETPLATFORM/* /usr/local/bin
|
|
|
|
ENTRYPOINT ["/usr/local/bin/martin"]
|