1
0
mirror of https://github.com/Luzifer/mondash.git synced 2024-09-19 17:02:58 +00:00
mondash/Dockerfile

46 lines
918 B
Docker
Raw Normal View History

FROM node:alpine as node_builder
COPY . /src/mondash
WORKDIR /src/mondash/src
RUN set -ex \
&& apk --no-cache add \
build-base \
python \
&& npm ci \
&& npm run build
FROM golang:alpine as builder
2016-01-23 12:07:07 +00:00
COPY . /go/src/github.com/Luzifer/mondash
2016-01-23 12:07:07 +00:00
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"]
2016-01-23 12:07:07 +00:00
ENTRYPOINT ["/usr/local/bin/mondash"]
CMD ["--"]
# vim: set ft=Dockerfile: