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.
2021-12-16 15:17:25 +00:00
|
|
|
FROM nextcloud:22.2.3-apache
|
2021-08-28 21:41:11 +00:00
|
|
|
|
2021-08-28 23:50:44 +00:00
|
|
|
COPY supervisord/supervisord.conf /opt/supervisord.conf
|
2021-08-28 21:41:11 +00:00
|
|
|
|
|
|
|
# install cron
|
2021-08-28 23:50:44 +00:00
|
|
|
RUN apt-get update \
|
2021-08-29 00:09:06 +00:00
|
|
|
&& apt-get install -y --no-install-recommends \
|
|
|
|
ffmpeg \
|
|
|
|
libmagickcore-6.q16-6-extra \
|
|
|
|
procps \
|
|
|
|
smbclient \
|
|
|
|
supervisor \
|
|
|
|
libbz2-dev \
|
|
|
|
libc-client-dev \
|
|
|
|
libkrb5-dev \
|
|
|
|
libsmbclient-dev \
|
|
|
|
&& pecl install smbclient \
|
|
|
|
&& docker-php-ext-enable smbclient \
|
2021-08-28 23:50:44 +00:00
|
|
|
&& mkdir /var/log/supervisord /var/run/supervisord \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2021-08-29 00:11:35 +00:00
|
|
|
ENV NEXTCLOUD_UPDATE=1
|
|
|
|
|
2021-08-28 23:50:44 +00:00
|
|
|
CMD ["/usr/bin/supervisord", "-c", "/opt/supervisord.conf"]
|