containers-matterbridge/Dockerfile

14 lines
430 B
Docker
Raw Permalink Normal View History

2023-08-24 14:50:53 +00:00
ARG ALPINE_VERSION=3.18.3
ARG BASE_IMAGE=gitea.nulo.in/sutty/monit
2021-10-03 23:19:00 +00:00
FROM ${BASE_IMAGE}:${ALPINE_VERSION}
2019-09-10 23:10:18 +00:00
MAINTAINER "f <f@sutty.nl>"
2022-03-19 18:14:29 +00:00
2022-03-19 18:32:12 +00:00
RUN getent group 82 || addgroup -g 82 -S www-data
RUN adduser -s /bin/sh -G www-data -h /srv/matterbridge -D matterbridge
2022-03-19 18:14:29 +00:00
RUN apk add --no-cache matterbridge daemonize
2022-03-19 18:32:12 +00:00
2022-03-19 18:14:29 +00:00
COPY ./monit.conf /etc/monit.d/matterbridge.conf
COPY ./matterbridged.sh /usr/local/bin/matterbridged
VOLUME /srv/matterbridge