2017-12-24 14:08:07 +01:00
|
|
|
FROM nextcloud:fpm
|
|
|
|
|
|
|
|
RUN echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/sources.list \
|
2018-08-06 14:40:03 +02:00
|
|
|
&& mkdir -p /usr/share/man/man1 \
|
2017-12-24 14:08:07 +01:00
|
|
|
&& apt-get update && apt-get install -y \
|
|
|
|
supervisor \
|
|
|
|
ffmpeg \
|
|
|
|
libmagickwand-dev \
|
|
|
|
libgmp3-dev \
|
|
|
|
libc-client-dev \
|
|
|
|
libkrb5-dev \
|
|
|
|
smbclient \
|
|
|
|
libsmbclient-dev \
|
2018-08-06 14:40:03 +02:00
|
|
|
# libreoffice \
|
2017-12-24 14:08:07 +01:00
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
|
|
&& docker-php-ext-configure imap --with-kerberos --with-imap-ssl \
|
2018-01-03 19:58:39 +01:00
|
|
|
&& ln -s "/usr/include/$(dpkg-architecture --query DEB_BUILD_MULTIARCH)/gmp.h" /usr/include/gmp.h \
|
2017-12-24 14:08:07 +01:00
|
|
|
&& docker-php-ext-install bz2 gmp imap \
|
|
|
|
&& pecl install imagick smbclient \
|
|
|
|
&& docker-php-ext-enable imagick smbclient \
|
2018-01-30 13:40:15 +01:00
|
|
|
&& mkdir /var/log/supervisord /var/run/supervisord
|
2017-12-24 14:08:07 +01:00
|
|
|
|
|
|
|
COPY supervisord.conf /etc/supervisor/supervisord.conf
|
|
|
|
|
|
|
|
CMD ["/usr/bin/supervisord"]
|