Add support for gmp & ffmpeg & svg

This commit is contained in:
Glenn Y. Rolland 2021-03-27 17:08:30 +01:00
parent 06115c671f
commit 5fc3b30937
1 changed files with 13 additions and 0 deletions

View File

@ -53,6 +53,19 @@ RUN apt-get update && apt-get install -y \
COPY supervisord.conf /etc/supervisord.conf
##
## GMP Support (for bookmark extension)
##
RUN apt-get update && apt-get install -y libgmp3-dev \
&& docker-php-ext-install gmp
##
## SVG & Thumbnail support
##
RUN apt-get update && apt-get install -y \
libmagickcore-6.q16-6-extra ffmpeg \
&& rm -rf /var/lib/apt/lists/* \
ENV NEXTCLOUD_UPDATE=1
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisord.conf"]