summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 9f51ea400eb5e19124ec61745a562e81470002b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
FROM alpine:edge
ENTRYPOINT ["/bin/matterbridge"]

COPY . /go/src/github.com/42wim/matterbridge
RUN apk update && apk add go git \
        && cd /go/src/github.com/42wim/matterbridge \
        && export GOPATH=/go \
        && go get \
        && go build -o /bin/matterbridge \
        && rm -rf /go \
        && apk del --purge git go