mirror of
https://github.com/Luzifer/mondash.git
synced 2024-11-13 01:42:41 +00:00
10 lines
184 B
Docker
10 lines
184 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
|
|
|
|
ENTRYPOINT ["/go/bin/mondash"]
|