11 lines
272 B
Text
11 lines
272 B
Text
|
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/*
|