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 \

