Add support for gmp & ffmpeg & svg
This commit is contained in:
parent
06115c671f
commit
5fc3b30937
1 changed files with 13 additions and 0 deletions
13
Dockerfile
13
Dockerfile
|
@ -53,6 +53,19 @@ RUN apt-get update && apt-get install -y \
|
||||||
|
|
||||||
COPY supervisord.conf /etc/supervisord.conf
|
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
|
ENV NEXTCLOUD_UPDATE=1
|
||||||
|
|
||||||
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisord.conf"]
|
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisord.conf"]
|
||||||
|
|
Loading…
Reference in a new issue