1
0
mirror of https://github.com/Luzifer/mondash.git synced 2024-09-18 16:32:58 +00:00
mondash/Dockerfile
Knut Ahlers d9cd13abc7
Pin to node:14, install python3
- node:16 is not compatible to several packages
- python package was removed from alpine

Signed-off-by: Knut Ahlers <knut@ahlers.me>
2021-05-01 15:13:32 +02:00

46 lines
922 B
Docker

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 <knut@ahlers.me>"
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: