This commit is contained in:
airdb 2017-06-03 17:35:47 +00:00 committed by GitHub
commit 206b480851

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM golang:latest
MAINTAINER Dean dean@airdb.com
# github webhook: github.com/adnanh/webhook
ENV PATH="$PATH:/go/bin"
RUN go get github.com/adnanh/webhook
RUN cd /go/src/github.com/adnanh/webhook
ENTRYPOINT webhook -verbose -hooks ./hooks.json.example
EXPOSE 9000