1
0
mirror of https://github.com/Luzifer/mapshare.git synced 2024-09-16 13:58:26 +00:00

Add frontend to container

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2020-01-07 01:12:55 +01:00
parent 270fcecc7d
commit 5599dc9e4b
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E

View File

@ -1,3 +1,16 @@
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
@ -17,9 +30,11 @@ RUN set -ex \
&& apk --no-cache add \
ca-certificates
COPY --from=builder /go/bin/mapshare /usr/local/bin/mapshare
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 ["--"]