1
0
Fork 0
mirror of https://github.com/Luzifer/mondash.git synced 2024-12-23 04:21:18 +00:00
mondash/Dockerfile

25 lines
537 B
Text
Raw Normal View History

FROM golang:alpine as builder
2016-01-23 12:07:07 +00:00
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
EXPOSE 3000
2016-01-23 12:07:07 +00:00
ENTRYPOINT ["/usr/local/bin/mondash"]
CMD ["--"]
# vim: set ft=Dockerfile: