-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile
45 lines (31 loc) · 922 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
FROM node:14-alpine as node_builder
COPY . /src/mondash
WORKDIR /src/mondash/src
RUN set -ex \
&& apk --no-cache add \
build-base \
python3 \
&& npm ci \
&& npm run build
FROM golang:alpine as builder
COPY . /go/src/github.com/Luzifer/mondash
WORKDIR /go/src/github.com/Luzifer/mondash
RUN set -ex \
&& apk add --update git \
&& go install \
-ldflags "-X main.version=$(git describe --tags --always || echo dev)" \
-mod=readonly
FROM alpine:latest
ENV FRONTEND_DIR=/usr/local/share/mondash/frontend \
STORAGE=file:///data
LABEL maintainer "Knut Ahlers <[email protected]>"
RUN set -ex \
&& apk --no-cache add \
ca-certificates
COPY --from=builder /go/bin/mondash /usr/local/bin/mondash
COPY --from=node_builder /src/mondash/frontend /usr/local/share/mondash/frontend
EXPOSE 3000
VOLUME ["/data"]
ENTRYPOINT ["/usr/local/bin/mondash"]
CMD ["--"]
# vim: set ft=Dockerfile: