1
0
mirror of https://github.com/Luzifer/mapshare.git synced 2024-09-16 13:58:26 +00:00
mapshare/Dockerfile
Knut Ahlers 5599dc9e4b
Add frontend to container
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2020-01-07 01:12:55 +01:00

43 lines
808 B
Docker

FROM alpine as prefetch
COPY . /src
WORKDIR /src
RUN set -ex \
&& apk add \
bash \
curl \
make \
&& make assets
FROM golang:alpine as builder
COPY . /go/src/github.com/Luzifer/mapshare
WORKDIR /go/src/github.com/Luzifer/mapshare
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/mapshare /usr/local/bin/mapshare
COPY --from=prefetch /src/frontend /usr/local/share/mapshare/frontend
EXPOSE 3000
WORKDIR /usr/local/share/mapshare
ENTRYPOINT ["/usr/local/bin/mapshare"]
CMD ["--"]
# vim: set ft=Dockerfile: