1
0
mirror of https://github.com/Luzifer/mapshare.git synced 2024-09-18 23:02:55 +00:00

Add dockerized version

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2020-01-07 00:31:00 +01:00
parent ff3b426712
commit 2fa10b94cf
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E

27
Dockerfile Normal file
View File

@ -0,0 +1,27 @@
FROM golang:alpine as builder
COPY . /go/src/github.com/Luzifer/mapshare/frontend
WORKDIR /go/src/github.com/Luzifer/mapshare/frontend
RUN set -ex \
&& apk add --update git \
&& go install \
-ldflags "-X main.version=$(git describe --tags --always || echo dev)" \
-mod=readonly
FROM alpine:latest
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
RUN set -ex \
&& apk --no-cache add \
ca-certificates
COPY --from=builder /go/bin/frontend /usr/local/bin/frontend
EXPOSE 3000
ENTRYPOINT ["/usr/local/bin/frontend"]
CMD ["--"]
# vim: set ft=Dockerfile: