[BREAKING] Dockerfile change

This change would be required for the Docker image to actually read `RELOADABLE` config options from the `matterbridge.toml`.

This edit would require https://github.com/42wim/matterbridge/wiki/Deploy:-Docker to be updated as well to mention that mounting would have to change to mounting a ***directory*** not a file. inotify inside Docker cannot read directly mounted files, only directories, for whatever reason.
This commit is contained in:
xnaas
2020-05-23 21:46:40 -05:00
committed by GitHub
parent 393f9e998b
commit 3a1b83bbe7

View File

@@ -10,4 +10,4 @@ RUN apk update && apk add go git gcc musl-dev \
FROM alpine:edge
RUN apk --no-cache add ca-certificates mailcap
COPY --from=builder /bin/matterbridge /bin/matterbridge
ENTRYPOINT ["/bin/matterbridge"]
ENTRYPOINT ["/bin/matterbridge", "-conf", "/conf/matterbridge.toml"]