0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-06-16 08:14:46 +02:00

Added smbclient module (#1)

This commit is contained in:
Glaucio Campos 2023-05-18 19:57:30 -03:00 committed by GitHub
parent 2d8f990304
commit 022bba8a48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 136 additions and 145 deletions

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 \
@ -64,12 +66,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 \
; \