Skip to content

Commit fbb775a

Browse files
authored
Merge pull request #627 from infosiftr/disable-hash
Add "--with-mhash"
2 parents 13811e2 + 1df2501 commit fbb775a

File tree

33 files changed

+99
-0
lines changed

33 files changed

+99
-0
lines changed

5.6/alpine3.4/cli/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ RUN set -xe \
114114
\
115115
--disable-cgi \
116116
\
117+
# https://github.com/docker-library/php/issues/439
118+
--with-mhash \
119+
\
117120
# --enable-ftp is included here because ftp_ssl_connect() needs ftp to be compiled statically (see https://github.com/docker-library/php/issues/236)
118121
--enable-ftp \
119122
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)

5.6/alpine3.4/fpm/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ RUN set -xe \
115115
\
116116
--disable-cgi \
117117
\
118+
# https://github.com/docker-library/php/issues/439
119+
--with-mhash \
120+
\
118121
# --enable-ftp is included here because ftp_ssl_connect() needs ftp to be compiled statically (see https://github.com/docker-library/php/issues/236)
119122
--enable-ftp \
120123
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)

5.6/alpine3.4/zts/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ RUN set -xe \
115115
\
116116
--disable-cgi \
117117
\
118+
# https://github.com/docker-library/php/issues/439
119+
--with-mhash \
120+
\
118121
# --enable-ftp is included here because ftp_ssl_connect() needs ftp to be compiled statically (see https://github.com/docker-library/php/issues/236)
119122
--enable-ftp \
120123
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)

5.6/jessie/apache/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,9 @@ RUN set -eux; \
193193
\
194194
--disable-cgi \
195195
\
196+
# https://github.com/docker-library/php/issues/439
197+
--with-mhash \
198+
\
196199
# --enable-ftp is included here because ftp_ssl_connect() needs ftp to be compiled statically (see https://github.com/docker-library/php/issues/236)
197200
--enable-ftp \
198201
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)

5.6/jessie/cli/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,9 @@ RUN set -eux; \
134134
\
135135
--disable-cgi \
136136
\
137+
# https://github.com/docker-library/php/issues/439
138+
--with-mhash \
139+
\
137140
# --enable-ftp is included here because ftp_ssl_connect() needs ftp to be compiled statically (see https://github.com/docker-library/php/issues/236)
138141
--enable-ftp \
139142
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)

5.6/jessie/fpm/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,9 @@ RUN set -eux; \
135135
\
136136
--disable-cgi \
137137
\
138+
# https://github.com/docker-library/php/issues/439
139+
--with-mhash \
140+
\
138141
# --enable-ftp is included here because ftp_ssl_connect() needs ftp to be compiled statically (see https://github.com/docker-library/php/issues/236)
139142
--enable-ftp \
140143
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)

5.6/jessie/zts/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,9 @@ RUN set -eux; \
135135
\
136136
--disable-cgi \
137137
\
138+
# https://github.com/docker-library/php/issues/439
139+
--with-mhash \
140+
\
138141
# --enable-ftp is included here because ftp_ssl_connect() needs ftp to be compiled statically (see https://github.com/docker-library/php/issues/236)
139142
--enable-ftp \
140143
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)

7.0/alpine3.4/cli/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ RUN set -xe \
114114
\
115115
--disable-cgi \
116116
\
117+
# https://github.com/docker-library/php/issues/439
118+
--with-mhash \
119+
\
117120
# --enable-ftp is included here because ftp_ssl_connect() needs ftp to be compiled statically (see https://github.com/docker-library/php/issues/236)
118121
--enable-ftp \
119122
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)

7.0/alpine3.4/fpm/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ RUN set -xe \
115115
\
116116
--disable-cgi \
117117
\
118+
# https://github.com/docker-library/php/issues/439
119+
--with-mhash \
120+
\
118121
# --enable-ftp is included here because ftp_ssl_connect() needs ftp to be compiled statically (see https://github.com/docker-library/php/issues/236)
119122
--enable-ftp \
120123
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)

7.0/alpine3.4/zts/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ RUN set -xe \
115115
\
116116
--disable-cgi \
117117
\
118+
# https://github.com/docker-library/php/issues/439
119+
--with-mhash \
120+
\
118121
# --enable-ftp is included here because ftp_ssl_connect() needs ftp to be compiled statically (see https://github.com/docker-library/php/issues/236)
119122
--enable-ftp \
120123
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)

0 commit comments

Comments
 (0)