mirror of
https://github.com/maplibre/martin.git
synced 2024-12-29 18:03:27 +03:00
d311888f94
* Fix docker file builds to use debian * add a few more things to `.dockerignore` * remove unused `martin` from docker-compose.yml * delete unused arm64.Dockerfile This should also fix #1021
8 lines
253 B
Docker
8 lines
253 B
Docker
FROM alpine
|
|
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"]
|