This commit is contained in:
Mathias Teier
2025-06-24 19:11:38 +02:00
parent 5844728083
commit ff1c1f8f74
7 changed files with 368 additions and 0 deletions

View File

@ -0,0 +1,14 @@
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/*