1
0
Fork 0
This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nextcloud-tweak/Dockerfile

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"]