From 5fc3b30937cc9131319ed6372edf877798131005 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Sat, 27 Mar 2021 17:08:30 +0100 Subject: [PATCH] Add support for gmp & ffmpeg & svg --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Dockerfile b/Dockerfile index 123127a..a7f3b55 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]