0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-21 03:06:08 +02:00

Added smbclient

Signed-off-by: Glaucio Campos <69731354+glauciocampos@users.noreply.github.com>
This commit is contained in:
Glaucio Campos 2023-05-14 20:18:19 -03:00 committed by GitHub
parent ecb9d691e9
commit f6b5c5ade1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,8 @@ RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends \
busybox-static \
smbclient \
libsmbclient-dev \
bzip2 \
libldap-common \
libmagickcore-6.q16-6-extra \
@ -65,12 +67,14 @@ RUN set -ex; \
# pecl will claim success even if one install fails, so we need to perform each install separately
pecl install APCu-5.1.22; \
pecl install imagick-3.7.0; \
pecl install smbclient; \
pecl install memcached-3.2.0; \
pecl install redis-5.3.7; \
\
docker-php-ext-enable \
apcu \
imagick \
smbclient \
memcached \
redis \
; \