File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- FROM php:7.3 -apache-buster
1+ FROM php:7.4 -apache-buster
22
33ADD root/ /
44# Fix the original permissions of /tmp, the PHP default upload tmp dir.
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ docker-php-ext-install -j$(nproc) \
5151 xmlrpc
5252
5353# GD.
54- docker-php-ext-configure gd --with-freetype-dir =/usr/include/ --with-jpeg-dir =/usr/include/
54+ docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/
5555docker-php-ext-install -j$( nproc) gd
5656
5757# LDAP.
@@ -63,7 +63,7 @@ pecl install memcached mongodb redis apcu igbinary uuid
6363docker-php-ext-enable memcached mongodb redis apcu igbinary uuid
6464
6565# ZIP
66- docker-php-ext-configure zip --with-libzip
66+ docker-php-ext-configure zip --with-zip
6767docker-php-ext-install zip
6868
6969echo ' apc.enable_cli = On' >> /usr/local/etc/php/conf.d/docker-php-ext-apcu.ini
Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ ACCEPT_EULA=Y apt-get install -y msodbcsql17
1515
1616ln -fsv /opt/mssql-tools/bin/* /usr/bin
1717
18- # Need 5.5 .0preview (or later) for PHP 7.3 support
19- pecl install sqlsrv-5.6.1
18+ # Need 5.7 .0preview (or later) for PHP 7.4 support
19+ pecl install sqlsrv-5.7.0preview
2020docker-php-ext-enable sqlsrv
You can’t perform that action at this time.
0 commit comments