mirror of
https://github.com/Luzifer/mapshare.git
synced 2024-12-20 14:41:19 +00:00
Add frontend to container
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
270fcecc7d
commit
5599dc9e4b
1 changed files with 16 additions and 1 deletions
15
Dockerfile
15
Dockerfile
|
@ -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
|
||||
|
@ -18,8 +31,10 @@ RUN set -ex \
|
|||
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 ["--"]
|
||||
|
|
Loading…
Reference in a new issue