Build own Nextcloud docker container with tools to use flow.

This commit is contained in:
Florian Zirker 2023-02-23 11:30:09 +01:00
parent 160b9286c3
commit 38e861d232
2 changed files with 20 additions and 2 deletions

10
nextcloud/Dockerfile Normal file
View file

@ -0,0 +1,10 @@
ARG NC_MAIN_VERSION
FROM nextcloud:$NC_MAIN_VERSION-fpm
RUN apt-get update && apt-get install -y --no-install-recommends \
imagemagick \
smbclient \
default-jre-headless libreoffice \
ffmpeg \
ocrmypdf tesseract-ocr-deu \
&& rm -rf /var/lib/apt/lists/*