barrel/Dockerfile: Add uploadprogress library

This commit is contained in:
Tom Wiesing 2021-12-20 15:09:15 +01:00
parent aea470732d
commit 7eb200e7d9
No known key found for this signature in database
GPG key ID: DC1F29F2BC78AB15

View file

@ -36,26 +36,28 @@ RUN apt-get update && apt-get install -y \
curl \ curl \
gd \ gd \
intl \ intl \
soap \
mysqli \ mysqli \
opcache \ opcache \
pdo_mysql \ pdo_mysql \
soap \
xml \ xml \
&& \ && \
pecl install xmlrpc-1.0.0RC3 && \ pecl install xmlrpc-1.0.0RC3 && \
pecl install ssh2-1.3.1 && \ pecl install ssh2-1.3.1 && \
pecl install apcu-5.1.21 && \ pecl install apcu-5.1.21 && \
pecl install uploadprogress-2.0.2 && \
docker-php-ext-enable \ docker-php-ext-enable \
apcu \ apcu \
curl \ curl \
gd \ gd \
intl \ intl \
mysqli \ mysqli \
mysqli \
opcache \ opcache \
pdo_mysql \ pdo_mysql \
soap \ soap \
ssh2 \ ssh2 \
mysqli \ uploadprogress \
xml \ xml \
xmlrpc \ xmlrpc \
&& \ && \