FROM golang AS builder
RUN go install github.com/protomaps/go-pmtiles@latest
FROM debian:stable-slim
COPY --from=builder /go/bin/go-pmtiles /bin/
ENTRYPOINT ["go-pmtiles"]
