mirror of
https://github.com/Luzifer/staticmap.git
synced 2024-12-20 21:01:18 +00:00
21 lines
505 B
Docker
21 lines
505 B
Docker
FROM golang:alpine
|
|
|
|
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
|
|
|
|
ENV CACHE_DIR /data/map-cache
|
|
ENV XDG_CACHE_HOME /data/tile-cache
|
|
|
|
COPY . /go/src/github.com/Luzifer/staticmap
|
|
WORKDIR /go/src/github.com/Luzifer/staticmap
|
|
|
|
RUN set -ex \
|
|
&& apk --no-cache add git ca-certificates \
|
|
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" \
|
|
&& apk --no-cache del --purge git
|
|
|
|
EXPOSE 3000
|
|
|
|
VOLUME ["/data"]
|
|
|
|
ENTRYPOINT ["/go/bin/staticmap"]
|
|
CMD ["--"]
|