diff --git a/5.3/apache/Dockerfile b/5.3/apache/Dockerfile index 8d092a9f09..257a88bedf 100644 --- a/5.3/apache/Dockerfile +++ b/5.3/apache/Dockerfile @@ -52,7 +52,7 @@ RUN set -x \ && echo "Hello, World!'; ?>" >> /var/www/html/index.php \ && cd /usr/src/php \ && make clean \ - && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql \ + && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli --with-pdo-mysql \ && make -j"$(nproc)" \ && make install \ && cp php.ini-development /usr/local/lib/php.ini \ diff --git a/5.4/apache/Dockerfile b/5.4/apache/Dockerfile index 9497629e78..c9058b8449 100644 --- a/5.4/apache/Dockerfile +++ b/5.4/apache/Dockerfile @@ -51,7 +51,7 @@ RUN set -x \ && echo "Hello, World!'; ?>" >> /var/www/html/index.php \ && cd /usr/src/php \ && make clean \ - && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql \ + && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli --with-pdo-mysql \ && make -j"$(nproc)" \ && make install \ && cp php.ini-development /usr/local/lib/php.ini \ diff --git a/5.5/apache/Dockerfile b/5.5/apache/Dockerfile index 2430e73416..c1f264eacf 100644 --- a/5.5/apache/Dockerfile +++ b/5.5/apache/Dockerfile @@ -51,7 +51,7 @@ RUN set -x \ && echo "Hello, World!'; ?>" >> /var/www/html/index.php \ && cd /usr/src/php \ && make clean \ - && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql \ + && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli --with-pdo-mysql \ && make -j"$(nproc)" \ && make install \ && cp php.ini-development /usr/local/lib/php.ini \ diff --git a/5.6/apache/Dockerfile b/5.6/apache/Dockerfile index e74aaa140e..e06c4d828c 100644 --- a/5.6/apache/Dockerfile +++ b/5.6/apache/Dockerfile @@ -51,7 +51,7 @@ RUN set -x \ && echo "Hello, World!'; ?>" >> /var/www/html/index.php \ && cd /usr/src/php \ && make clean \ - && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql \ + && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli --with-pdo-mysql \ && make -j"$(nproc)" \ && make install \ && cp php.ini-development /usr/local/lib/php.ini \ diff --git a/Dockerfile-apache-insert b/Dockerfile-apache-insert index 87f0e17a61..e40865aea0 100644 --- a/Dockerfile-apache-insert +++ b/Dockerfile-apache-insert @@ -28,7 +28,7 @@ && echo "Hello, World!'; ?>" >> /var/www/html/index.php \ && cd /usr/src/php \ && make clean \ - && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql \ + && ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-mysqli --with-pdo-mysql \ && make -j"$(nproc)" \ && make install \ && cp php.ini-development /usr/local/lib/php.ini \