Skip to content

Commit 5924bec

Browse files
authored
Merge pull request #105 from stronk7/master
Reconcile master with 7.4-buster
2 parents a3b0a71 + eae4948 commit 5924bec

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:7.3-apache-buster
1+
FROM php:7.4-apache-buster
22

33
ADD root/ /
44
# Fix the original permissions of /tmp, the PHP default upload tmp dir.

root/tmp/setup/php-extensions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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/
5555
docker-php-ext-install -j$(nproc) gd
5656

5757
# LDAP.
@@ -63,7 +63,7 @@ pecl install memcached mongodb redis apcu igbinary uuid
6363
docker-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
6767
docker-php-ext-install zip
6868

6969
echo 'apc.enable_cli = On' >> /usr/local/etc/php/conf.d/docker-php-ext-apcu.ini

root/tmp/setup/sqlsrv-extension.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ ACCEPT_EULA=Y apt-get install -y msodbcsql17
1515

1616
ln -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
2020
docker-php-ext-enable sqlsrv

0 commit comments

Comments
 (0)