diff --git a/app/Dockerfile b/app/Dockerfile index 4a11161..9b81dda 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -1,3 +1,11 @@ FROM nextcloud:fpm +RUN apt-get update; \ + apt-get install -y --no-install-recommends \ + smbclient libsmbclient-dev +RUN pecl install \ + smbclient +RUN rm -rf /var/lib/apt/lists/* +RUN docker-php-ext-enable smbclient + COPY redis.config.php /usr/src/nextcloud/config/redis.config.php