18 lines
441 B
Docker
18 lines
441 B
Docker
FROM nextcloud:25.0.3-apache
|
|
|
|
COPY supervisord/supervisord.conf /opt/supervisord.conf
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
ffmpeg \
|
|
libmagickcore-6.q16-6-extra \
|
|
procps \
|
|
smbclient \
|
|
supervisor \
|
|
&& mkdir /var/log/supervisord /var/run/supervisord \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV NEXTCLOUD_UPDATE=1
|
|
|
|
CMD ["/usr/bin/supervisord", "-c", "/opt/supervisord.conf"]
|