Files
2026-04-07 15:46:18 -04:00

13 lines
327 B
Docker

FROM nextcloud:latest
# Install smbclient and required dependencies
RUN set -x && apt-get update \
# PHP Module smbclient
&& apt-get install -y smbclient libsmbclient-dev \
&& pecl install smbclient \
&& docker-php-ext-enable smbclient \
# ffmpeg
&& apt-get install -y ffmpeg \
&& apt-get clean \