diff --git a/yii2-alpine-supervisor-xdebug/Dockerfile b/yii2-alpine-supervisor-xdebug/Dockerfile index bba9aaa..0ce2c49 100644 --- a/yii2-alpine-supervisor-xdebug/Dockerfile +++ b/yii2-alpine-supervisor-xdebug/Dockerfile @@ -22,10 +22,8 @@ RUN apk --update add \ nodejs \ postgresql-dev && \ docker-php-ext-configure gd \ - --with-gd \ - --with-freetype-dir=/usr/include/ \ - --with-jpeg-dir=/usr/include/ \ - --with-png-dir=/usr/include/ && \ + --with-freetype \ + --with-jpeg && \ docker-php-ext-configure bcmath && \ docker-php-ext-configure pgsql --with-pgsql=/usr/local/pgsql && \ docker-php-ext-install \ diff --git a/yii2-alpine-supervisor/Dockerfile b/yii2-alpine-supervisor/Dockerfile index f030b8a..c91db8a 100644 --- a/yii2-alpine-supervisor/Dockerfile +++ b/yii2-alpine-supervisor/Dockerfile @@ -22,10 +22,8 @@ RUN apk --update add \ nodejs \ postgresql-dev && \ docker-php-ext-configure gd \ - --with-gd \ - --with-freetype-dir=/usr/include/ \ - --with-jpeg-dir=/usr/include/ \ - --with-png-dir=/usr/include/ && \ + --with-freetype \ + --with-jpeg && \ docker-php-ext-configure bcmath && \ docker-php-ext-configure pgsql --with-pgsql=/usr/local/pgsql && \ docker-php-ext-install \ diff --git a/yii2-alpine-xdebug/Dockerfile b/yii2-alpine-xdebug/Dockerfile index d010f37..ab8c988 100644 --- a/yii2-alpine-xdebug/Dockerfile +++ b/yii2-alpine-xdebug/Dockerfile @@ -22,10 +22,8 @@ RUN apk --update add \ nodejs \ postgresql-dev && \ docker-php-ext-configure gd \ - --with-gd \ - --with-freetype-dir=/usr/include/ \ - --with-jpeg-dir=/usr/include/ \ - --with-png-dir=/usr/include/ && \ + --with-freetype \ + --with-jpeg && \ docker-php-ext-configure bcmath && \ docker-php-ext-configure pgsql --with-pgsql=/usr/local/pgsql && \ docker-php-ext-install \ diff --git a/yii2-alpine/Dockerfile b/yii2-alpine/Dockerfile index a8547cb..0a74b9b 100644 --- a/yii2-alpine/Dockerfile +++ b/yii2-alpine/Dockerfile @@ -22,10 +22,8 @@ RUN apk --update add \ nodejs \ postgresql-dev && \ docker-php-ext-configure gd \ - --with-gd \ - --with-freetype-dir=/usr/include/ \ - --with-jpeg-dir=/usr/include/ \ - --with-png-dir=/usr/include/ && \ + --with-freetype \ + --with-jpeg && \ docker-php-ext-configure bcmath && \ docker-php-ext-configure pgsql --with-pgsql=/usr/local/pgsql && \ docker-php-ext-install \ diff --git a/yii2-xdebug/Dockerfile b/yii2-xdebug/Dockerfile index 92ebc1e..289d79f 100644 --- a/yii2-xdebug/Dockerfile +++ b/yii2-xdebug/Dockerfile @@ -46,7 +46,9 @@ RUN apt-get update && \ apt-get install -y $mainDependencies \ --no-install-recommends && \ docker-php-ext-configure intl && \ - docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-png-dir=/usr/include/ && \ + docker-php-ext-configure gd \ + --with-freetype \ + --with-jpeg && \ docker-php-ext-configure pgsql --with-pgsql=/usr/local/pgsql && \ docker-php-ext-install -j$(nproc) pdo_mysql pdo_pgsql pgsql intl gd zip && \ # imagick diff --git a/yii2/Dockerfile b/yii2/Dockerfile index e16ded2..8d5529f 100644 --- a/yii2/Dockerfile +++ b/yii2/Dockerfile @@ -46,7 +46,9 @@ RUN apt-get update && \ apt-get install -y $mainDependencies \ --no-install-recommends && \ docker-php-ext-configure intl && \ - docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-png-dir=/usr/include/ && \ + docker-php-ext-configure gd \ + --with-freetype \ + --with-jpeg && \ docker-php-ext-configure pgsql --with-pgsql=/usr/local/pgsql && \ docker-php-ext-install -j$(nproc) pdo_mysql pdo_pgsql pgsql intl gd zip && \ # imagick