mirror of
https://github.com/Luzifer/staticmap.git
synced 2024-12-20 12:51:18 +00:00
Dockerize application
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
759b968510
commit
178253acb3
1 changed files with 20 additions and 0 deletions
20
Dockerfile
Normal file
20
Dockerfile
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
FROM golang:alpine
|
||||||
|
|
||||||
|
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
|
||||||
|
|
||||||
|
ENV CACHE_DIR /data
|
||||||
|
|
||||||
|
ADD . /go/src/github.com/Luzifer/staticmap
|
||||||
|
WORKDIR /go/src/github.com/Luzifer/staticmap
|
||||||
|
|
||||||
|
RUN set -ex \
|
||||||
|
&& apk add --update git ca-certificates \
|
||||||
|
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" \
|
||||||
|
&& apk del --purge git
|
||||||
|
|
||||||
|
EXPOSE 3000
|
||||||
|
|
||||||
|
VOLUME ["/data"]
|
||||||
|
|
||||||
|
ENTRYPOINT ["/go/bin/staticmap"]
|
||||||
|
CMD ["--"]
|
Loading…
Reference in a new issue