Skip to content

Commit 1a71435

Browse files
authored
Merge pull request #86 from J0WI/php7.4-gd
Fix gd extension in 7.4
2 parents 9329478 + 5b76fff commit 1a71435

File tree

12 files changed

+28
-21
lines changed

12 files changed

+28
-21
lines changed

Dockerfile-alpine.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN set -ex; \
2424
postgresql-dev \
2525
; \
2626
\
27-
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
27+
docker-php-ext-configure gd --with-jpeg; \
2828
docker-php-ext-configure ldap; \
2929
docker-php-ext-install -j "$(nproc)" \
3030
bz2 \

Dockerfile-debian.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN set -ex; \
2020
libzip-dev \
2121
; \
2222
\
23-
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
23+
docker-php-ext-configure gd --with-jpeg; \
2424
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
2525
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
2626
docker-php-ext-install -j "$(nproc)" \

php7.2/apache/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN set -ex; \
2222
libpq-dev \
2323
; \
2424
\
25-
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
25+
docker-php-ext-configure gd --with-jpeg-dir=/usr --with-png-dir=/usr; \
2626
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
2727
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
2828
docker-php-ext-install -j "$(nproc)" \
@@ -38,7 +38,7 @@ RUN set -ex; \
3838
\
3939
# pecl will claim success even if one install fails, so we need to perform each install separately
4040
pecl install APCu-5.1.18; \
41-
pecl install memcached-3.1.4; \
41+
pecl install memcached-3.1.5; \
4242
pecl install redis-4.3.0; \
4343
\
4444
docker-php-ext-enable \

php7.2/fpm-alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN set -ex; \
2323
postgresql-dev \
2424
; \
2525
\
26-
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
26+
docker-php-ext-configure gd --with-jpeg-dir=/usr --with-png-dir=/usr; \
2727
docker-php-ext-configure ldap; \
2828
docker-php-ext-install -j "$(nproc)" \
2929
bz2 \
@@ -38,7 +38,7 @@ RUN set -ex; \
3838
\
3939
# pecl will claim success even if one install fails, so we need to perform each install separately
4040
pecl install APCu-5.1.18; \
41-
pecl install memcached-3.1.4; \
41+
pecl install memcached-3.1.5; \
4242
pecl install redis-4.3.0; \
4343
\
4444
docker-php-ext-enable \

php7.2/fpm/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN set -ex; \
1919
libpq-dev \
2020
; \
2121
\
22-
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
22+
docker-php-ext-configure gd --with-jpeg-dir=/usr --with-png-dir=/usr; \
2323
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
2424
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
2525
docker-php-ext-install -j "$(nproc)" \
@@ -35,7 +35,7 @@ RUN set -ex; \
3535
\
3636
# pecl will claim success even if one install fails, so we need to perform each install separately
3737
pecl install APCu-5.1.18; \
38-
pecl install memcached-3.1.4; \
38+
pecl install memcached-3.1.5; \
3939
pecl install redis-4.3.0; \
4040
\
4141
docker-php-ext-enable \

php7.3/apache/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN set -ex; \
2323
libzip-dev \
2424
; \
2525
\
26-
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
26+
docker-php-ext-configure gd --with-jpeg-dir=/usr --with-png-dir=/usr; \
2727
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
2828
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
2929
docker-php-ext-install -j "$(nproc)" \
@@ -39,7 +39,7 @@ RUN set -ex; \
3939
\
4040
# pecl will claim success even if one install fails, so we need to perform each install separately
4141
pecl install APCu-5.1.18; \
42-
pecl install memcached-3.1.4; \
42+
pecl install memcached-3.1.5; \
4343
pecl install redis-4.3.0; \
4444
\
4545
docker-php-ext-enable \

php7.3/fpm-alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN set -ex; \
2424
postgresql-dev \
2525
; \
2626
\
27-
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
27+
docker-php-ext-configure gd --with-jpeg-dir=/usr --with-png-dir=/usr; \
2828
docker-php-ext-configure ldap; \
2929
docker-php-ext-install -j "$(nproc)" \
3030
bz2 \
@@ -39,7 +39,7 @@ RUN set -ex; \
3939
\
4040
# pecl will claim success even if one install fails, so we need to perform each install separately
4141
pecl install APCu-5.1.18; \
42-
pecl install memcached-3.1.4; \
42+
pecl install memcached-3.1.5; \
4343
pecl install redis-4.3.0; \
4444
\
4545
docker-php-ext-enable \

php7.3/fpm/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN set -ex; \
2020
libzip-dev \
2121
; \
2222
\
23-
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
23+
docker-php-ext-configure gd --with-jpeg-dir=/usr --with-png-dir=/usr; \
2424
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
2525
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
2626
docker-php-ext-install -j "$(nproc)" \
@@ -36,7 +36,7 @@ RUN set -ex; \
3636
\
3737
# pecl will claim success even if one install fails, so we need to perform each install separately
3838
pecl install APCu-5.1.18; \
39-
pecl install memcached-3.1.4; \
39+
pecl install memcached-3.1.5; \
4040
pecl install redis-4.3.0; \
4141
\
4242
docker-php-ext-enable \

php7.4/apache/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN set -ex; \
2323
libzip-dev \
2424
; \
2525
\
26-
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
26+
docker-php-ext-configure gd --with-jpeg; \
2727
debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \
2828
docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \
2929
docker-php-ext-install -j "$(nproc)" \
@@ -39,7 +39,7 @@ RUN set -ex; \
3939
\
4040
# pecl will claim success even if one install fails, so we need to perform each install separately
4141
pecl install APCu-5.1.18; \
42-
pecl install memcached-3.1.4; \
42+
pecl install memcached-3.1.5; \
4343
pecl install redis-4.3.0; \
4444
\
4545
docker-php-ext-enable \

php7.4/fpm-alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN set -ex; \
2424
postgresql-dev \
2525
; \
2626
\
27-
docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \
27+
docker-php-ext-configure gd --with-jpeg; \
2828
docker-php-ext-configure ldap; \
2929
docker-php-ext-install -j "$(nproc)" \
3030
bz2 \
@@ -39,7 +39,7 @@ RUN set -ex; \
3939
\
4040
# pecl will claim success even if one install fails, so we need to perform each install separately
4141
pecl install APCu-5.1.18; \
42-
pecl install memcached-3.1.4; \
42+
pecl install memcached-3.1.5; \
4343
pecl install redis-4.3.0; \
4444
\
4545
docker-php-ext-enable \

0 commit comments

Comments
 (0)