0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-03-15 19:05:09 +01:00

added bz2 php module as recommended by nextcloud

This commit is contained in:
Dominic Schröder 2024-02-29 18:17:34 +01:00
parent 38eba12039
commit 29897190d9
3 changed files with 6 additions and 0 deletions

View file

@ -42,6 +42,7 @@ RUN set -ex; \
libwebp-dev \ libwebp-dev \
libxml2-dev \ libxml2-dev \
libzip-dev \ libzip-dev \
libbz2-dev \
; \ ; \
\ \
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \ debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
@ -60,6 +61,7 @@ RUN set -ex; \
pdo_pgsql \ pdo_pgsql \
sysvsem \ sysvsem \
zip \ zip \
bz2 \
; \ ; \
\ \
# pecl will claim success even if one install fails, so we need to perform each install separately # pecl will claim success even if one install fails, so we need to perform each install separately

View file

@ -34,6 +34,7 @@ RUN set -ex; \
openldap-dev \ openldap-dev \
pcre-dev \ pcre-dev \
postgresql-dev \ postgresql-dev \
bzip2-dev \
; \ ; \
\ \
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \ docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \
@ -51,6 +52,7 @@ RUN set -ex; \
pdo_pgsql \ pdo_pgsql \
sysvsem \ sysvsem \
zip \ zip \
bz2 \
; \ ; \
\ \
# pecl will claim success even if one install fails, so we need to perform each install separately # pecl will claim success even if one install fails, so we need to perform each install separately

View file

@ -42,6 +42,7 @@ RUN set -ex; \
libwebp-dev \ libwebp-dev \
libxml2-dev \ libxml2-dev \
libzip-dev \ libzip-dev \
libbz2-dev \
; \ ; \
\ \
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \ debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
@ -60,6 +61,7 @@ RUN set -ex; \
pdo_pgsql \ pdo_pgsql \
sysvsem \ sysvsem \
zip \ zip \
bz2 \
; \ ; \
\ \
# pecl will claim success even if one install fails, so we need to perform each install separately # pecl will claim success even if one install fails, so we need to perform each install separately