1
0
mirror of https://github.com/Luzifer/mondash.git synced 2024-09-19 17:02:58 +00:00
mondash/Dockerfile
Knut Ahlers b473100d2c
Fix: Template dir missing in Image
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-09-16 14:58:25 +02:00

27 lines
670 B
Docker

FROM golang:alpine as builder
ADD . /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 || git rev-parse --short HEAD || echo dev)"
FROM alpine:latest
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=builder /go/src/github.com/Luzifer/mondash/templates /usr/local/share/mondash/templates
WORKDIR /usr/local/share/mondash
EXPOSE 3000
ENTRYPOINT ["/usr/local/bin/mondash"]
CMD ["--"]
# vim: set ft=Dockerfile: