summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: e2f54669ff2c07a5462f91f434355a1b67376987 (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 gcc musl-dev ca-certificates \
        && 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 gcc musl-dev