containers-matterbridge/Dockerfile
f a12da10db4
All checks were successful
ci/woodpecker/push/woodpecker/1 Pipeline was successful
ci/woodpecker/push/woodpecker/2 Pipeline was successful
ci/woodpecker/push/woodpecker/3 Pipeline was successful
ci/woodpecker/push/woodpecker/4 Pipeline was successful
Merge branch 'antifascista' of ssh://gitea.nulo.in:420/Sutty/containers-skel into antifascista
2024-06-21 13:07:01 -03:00

13 lines
454 B
Docker

ARG ALPINE_VERSION=3.18.3
ARG BASE_IMAGE=gitea.nulo.in/sutty/monit
FROM ${BASE_IMAGE}:${ALPINE_VERSION}
LABEL org.opencontainers.image.authors="f@sutty.nl"
RUN getent group 82 || addgroup -g 82 -S www-data
RUN adduser -s /bin/sh -G www-data -h /srv/matterbridge -D matterbridge
RUN apk add --no-cache matterbridge daemonize
COPY ./monit.conf /etc/monit.d/matterbridge.conf
COPY ./matterbridged.sh /usr/local/bin/matterbridged
VOLUME /srv/matterbridge