15 lines
257 B
Docker
15 lines
257 B
Docker
FROM nextcloud:31.0.6-fpm
|
|
|
|
RUN apt update
|
|
RUN apt upgrade -y
|
|
|
|
ENV PHP_MEMORY_LIMIT 2048M
|
|
ENV PHP_UPLOAD_LIMIT 1024M
|
|
|
|
#Imaging
|
|
RUN apt install -y libgmp3-dev ffmpeg libmagickcore-6.q16-6-extra
|
|
RUN docker-php-ext-install gmp
|
|
|
|
RUN rm -rf /var/lib/apt/lists/*
|
|
|