Skip to content

Commit bfbb09c

Browse files
authored
install xsl extension
1 parent 29e1b6c commit bfbb09c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ ENV DEBIAN_FRONTEND=noninteractive
55
RUN apt-get update -y && \
66
apt-get install -qqy \
77
nginx supervisor cron git curl links vim redis-tools mysql-client locales openvpn \
8-
libssl-dev libmcrypt-dev libicu-dev libfreetype6-dev libjpeg62-turbo-dev libpng12-dev libpq-dev g++ libxml2-dev && \
8+
libssl-dev libmcrypt-dev libicu-dev libfreetype6-dev libjpeg62-turbo-dev libpng12-dev libpq-dev g++ libxml2-dev libxslt-dev && \
99
echo "cs_CZ.UTF-8 UTF-8" > /etc/locale.gen && locale-gen cs_CZ.UTF-8 && \
1010
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && locale-gen en_US.UTF-8 && \
1111
dpkg-reconfigure locales && \
1212
pecl install mongodb && docker-php-ext-enable mongodb && \
1313
pecl install redis && docker-php-ext-enable redis && \
1414
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && \
15-
docker-php-ext-install -j$(nproc) bcmath mbstring intl iconv mcrypt zip mysqli pdo pdo_mysql opcache soap gd && \
15+
docker-php-ext-install -j$(nproc) bcmath mbstring intl iconv mcrypt zip mysqli pdo pdo_mysql opcache soap gd xsl && \
1616
apt-get purge --auto-remove -y g++ && \
1717
apt-get clean && \
1818
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /var/www/html/* && \

0 commit comments

Comments
 (0)