This will preserve setups that were configured to run the old way without breaking them and new configs can be setup "correctly" without issue.
17 lines
629 B
Docker
17 lines
629 B
Docker
FROM alpine:edge AS builder
|
|
|
|
COPY . /go/src/github.com/42wim/matterbridge
|
|
RUN apk update && apk add go git gcc musl-dev \
|
|
&& cd /go/src/github.com/42wim/matterbridge \
|
|
&& export GOPATH=/go \
|
|
&& go get \
|
|
&& go build -x -ldflags "-X main.githash=$(git log --pretty=format:'%h' -n 1)" -o /bin/matterbridge
|
|
|
|
FROM alpine:edge
|
|
RUN apk --no-cache add ca-certificates mailcap
|
|
COPY --from=builder /bin/matterbridge /bin/matterbridge
|
|
RUN mkdir /conf
|
|
RUN touch /conf/matterbridge.toml
|
|
RUN ln -sf /matterbridge.toml /conf/matterbridge.toml
|
|
ENTRYPOINT ["/bin/matterbridge", "-conf", "/conf/matterbridge.toml"]
|