From 66b2fe007d9b64c00b7128e7fa5cd895305ef454 Mon Sep 17 00:00:00 2001 From: Brett Tasker Date: Thu, 16 Nov 2017 10:36:05 +1300 Subject: [PATCH] FIX: Remove mysql configure from 7.1 --- 7.1/alpine/Dockerfile | 1 - 7.1/platform/Dockerfile | 1 - 2 files changed, 2 deletions(-) diff --git a/7.1/alpine/Dockerfile b/7.1/alpine/Dockerfile index d56dccf..79b78b4 100644 --- a/7.1/alpine/Dockerfile +++ b/7.1/alpine/Dockerfile @@ -20,7 +20,6 @@ RUN apt-get update -y && apt-get install -y \ # Install PHP Extensions RUN docker-php-ext-configure intl && \ - docker-php-ext-configure mysql --with-mysql=mysqlnd && \ docker-php-ext-configure mysqli --with-mysqli=mysqlnd && \ docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && \ docker-php-ext-install -j$(nproc) \ diff --git a/7.1/platform/Dockerfile b/7.1/platform/Dockerfile index 5c3532e..5db662e 100644 --- a/7.1/platform/Dockerfile +++ b/7.1/platform/Dockerfile @@ -23,7 +23,6 @@ RUN apt-get update -y && apt-get install -y \ # Install PHP Extensions RUN docker-php-ext-configure intl && \ - docker-php-ext-configure mysql --with-mysql=mysqlnd && \ docker-php-ext-configure mysqli --with-mysqli=mysqlnd && \ docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && \ docker-php-ext-enable xdebug && \