mirror of
https://github.com/Luzifer/mondash.git
synced 2024-11-10 00:20:02 +00:00
11 lines
227 B
Docker
11 lines
227 B
Docker
FROM golang
|
|
|
|
MAINTAINER Knut Ahlers <knut@ahlers.me>
|
|
|
|
RUN go get github.com/Luzifer/mondash && \
|
|
go install github.com/Luzifer/mondash
|
|
|
|
EXPOSE 3000
|
|
|
|
WORKDIR /go/src/github.com/Luzifer/mondash
|
|
ENTRYPOINT ["/go/bin/mondash"]
|