-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update php #6851
Merged
Merged
Update php #6851
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Changes: - docker-library/php@da77ea9: Merge pull request docker-library/php#901 from delfer/largefile - docker-library/php@88a8a1e: Add comment to remind us why we added largefile support - docker-library/php@168caf5: Enabled large file support (affects 32bit systems)
Diff:diff --git a/php_7.1-alpine/Dockerfile b/php_7.1-alpine/Dockerfile
index 72aa124..18d81dc 100644
--- a/php_7.1-alpine/Dockerfile
+++ b/php_7.1-alpine/Dockerfile
@@ -55,7 +55,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.1-alpine3.9/Dockerfile b/php_7.1-alpine3.9/Dockerfile
index 6b1b20f..61b7b88 100644
--- a/php_7.1-alpine3.9/Dockerfile
+++ b/php_7.1-alpine3.9/Dockerfile
@@ -55,7 +55,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.1-apache-stretch/Dockerfile b/php_7.1-apache-stretch/Dockerfile
index 922f79d..5791d76 100644
--- a/php_7.1-apache-stretch/Dockerfile
+++ b/php_7.1-apache-stretch/Dockerfile
@@ -117,7 +117,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --with-apxs2 --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.1-apache/Dockerfile b/php_7.1-apache/Dockerfile
index d6e41ae..bb6053b 100644
--- a/php_7.1-apache/Dockerfile
+++ b/php_7.1-apache/Dockerfile
@@ -117,7 +117,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --with-apxs2 --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.1-fpm-alpine/Dockerfile b/php_7.1-fpm-alpine/Dockerfile
index 87cf13b..04746e1 100644
--- a/php_7.1-fpm-alpine/Dockerfile
+++ b/php_7.1-fpm-alpine/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.1-fpm-alpine3.9/Dockerfile b/php_7.1-fpm-alpine3.9/Dockerfile
index b98bd37..39b0945 100644
--- a/php_7.1-fpm-alpine3.9/Dockerfile
+++ b/php_7.1-fpm-alpine3.9/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.1-fpm-stretch/Dockerfile b/php_7.1-fpm-stretch/Dockerfile
index 02c478a..e42fed3 100644
--- a/php_7.1-fpm-stretch/Dockerfile
+++ b/php_7.1-fpm-stretch/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.1-fpm/Dockerfile b/php_7.1-fpm/Dockerfile
index a5bffd1..287e20a 100644
--- a/php_7.1-fpm/Dockerfile
+++ b/php_7.1-fpm/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.1-stretch/Dockerfile b/php_7.1-stretch/Dockerfile
index 8176aed..ea8cc10 100644
--- a/php_7.1-stretch/Dockerfile
+++ b/php_7.1-stretch/Dockerfile
@@ -57,7 +57,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.1-zts-alpine/Dockerfile b/php_7.1-zts-alpine/Dockerfile
index 2ce61ea..14054ed 100644
--- a/php_7.1-zts-alpine/Dockerfile
+++ b/php_7.1-zts-alpine/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.1-zts-alpine3.9/Dockerfile b/php_7.1-zts-alpine3.9/Dockerfile
index 08ad34c..e7cd60e 100644
--- a/php_7.1-zts-alpine3.9/Dockerfile
+++ b/php_7.1-zts-alpine3.9/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.1-zts-stretch/Dockerfile b/php_7.1-zts-stretch/Dockerfile
index 2771c98..0354aff 100644
--- a/php_7.1-zts-stretch/Dockerfile
+++ b/php_7.1-zts-stretch/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.1-zts/Dockerfile b/php_7.1-zts/Dockerfile
index 942b27e..a5482d5 100644
--- a/php_7.1-zts/Dockerfile
+++ b/php_7.1-zts/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.1/Dockerfile b/php_7.1/Dockerfile
index 4542b3a..3519848 100644
--- a/php_7.1/Dockerfile
+++ b/php_7.1/Dockerfile
@@ -57,7 +57,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2-alpine/Dockerfile b/php_7.2-alpine/Dockerfile
index 9feff68..219ef54 100644
--- a/php_7.2-alpine/Dockerfile
+++ b/php_7.2-alpine/Dockerfile
@@ -55,7 +55,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2-alpine3.9/Dockerfile b/php_7.2-alpine3.9/Dockerfile
index cc04930..bdb8031 100644
--- a/php_7.2-alpine3.9/Dockerfile
+++ b/php_7.2-alpine3.9/Dockerfile
@@ -55,7 +55,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2-apache-stretch/Dockerfile b/php_7.2-apache-stretch/Dockerfile
index fe38966..055b326 100644
--- a/php_7.2-apache-stretch/Dockerfile
+++ b/php_7.2-apache-stretch/Dockerfile
@@ -117,7 +117,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --with-apxs2 --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2-apache/Dockerfile b/php_7.2-apache/Dockerfile
index 4f41fd6..b2a6521 100644
--- a/php_7.2-apache/Dockerfile
+++ b/php_7.2-apache/Dockerfile
@@ -117,7 +117,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --with-apxs2 --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2-fpm-alpine/Dockerfile b/php_7.2-fpm-alpine/Dockerfile
index f9ae94b..f0e63e5 100644
--- a/php_7.2-fpm-alpine/Dockerfile
+++ b/php_7.2-fpm-alpine/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2-fpm-alpine3.9/Dockerfile b/php_7.2-fpm-alpine3.9/Dockerfile
index bab13e7..679aab3 100644
--- a/php_7.2-fpm-alpine3.9/Dockerfile
+++ b/php_7.2-fpm-alpine3.9/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2-fpm-stretch/Dockerfile b/php_7.2-fpm-stretch/Dockerfile
index 5d1aa82..a746655 100644
--- a/php_7.2-fpm-stretch/Dockerfile
+++ b/php_7.2-fpm-stretch/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2-fpm/Dockerfile b/php_7.2-fpm/Dockerfile
index da8b35b..94a6b4e 100644
--- a/php_7.2-fpm/Dockerfile
+++ b/php_7.2-fpm/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2-stretch/Dockerfile b/php_7.2-stretch/Dockerfile
index d83c7e6..bfb6887 100644
--- a/php_7.2-stretch/Dockerfile
+++ b/php_7.2-stretch/Dockerfile
@@ -57,7 +57,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2-zts-alpine/Dockerfile b/php_7.2-zts-alpine/Dockerfile
index 6a6296c..ffdf03f 100644
--- a/php_7.2-zts-alpine/Dockerfile
+++ b/php_7.2-zts-alpine/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2-zts-alpine3.9/Dockerfile b/php_7.2-zts-alpine3.9/Dockerfile
index dcf1b9b..04cfd51 100644
--- a/php_7.2-zts-alpine3.9/Dockerfile
+++ b/php_7.2-zts-alpine3.9/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2-zts-stretch/Dockerfile b/php_7.2-zts-stretch/Dockerfile
index 8ef18a1..acf3e27 100644
--- a/php_7.2-zts-stretch/Dockerfile
+++ b/php_7.2-zts-stretch/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2-zts/Dockerfile b/php_7.2-zts/Dockerfile
index 4b1f59c..e7afaef 100644
--- a/php_7.2-zts/Dockerfile
+++ b/php_7.2-zts/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_7.2/Dockerfile b/php_7.2/Dockerfile
index b736b72..bdb25c7 100644
--- a/php_7.2/Dockerfile
+++ b/php_7.2/Dockerfile
@@ -57,7 +57,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_alpine/Dockerfile b/php_alpine/Dockerfile
index b7404fd..5b72189 100644
--- a/php_alpine/Dockerfile
+++ b/php_alpine/Dockerfile
@@ -55,7 +55,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_alpine3.9/Dockerfile b/php_alpine3.9/Dockerfile
index 772c12c..d395abd 100644
--- a/php_alpine3.9/Dockerfile
+++ b/php_alpine3.9/Dockerfile
@@ -55,7 +55,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_apache-stretch/Dockerfile b/php_apache-stretch/Dockerfile
index 9b29b5f..e0d0cd1 100644
--- a/php_apache-stretch/Dockerfile
+++ b/php_apache-stretch/Dockerfile
@@ -117,7 +117,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --with-apxs2 --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_apache/Dockerfile b/php_apache/Dockerfile
index cf7e45e..dafde84 100644
--- a/php_apache/Dockerfile
+++ b/php_apache/Dockerfile
@@ -117,7 +117,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --with-apxs2 --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_fpm-alpine/Dockerfile b/php_fpm-alpine/Dockerfile
index 7bc0139..10c2e82 100644
--- a/php_fpm-alpine/Dockerfile
+++ b/php_fpm-alpine/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_fpm-alpine3.9/Dockerfile b/php_fpm-alpine3.9/Dockerfile
index 5e55145..4d39e94 100644
--- a/php_fpm-alpine3.9/Dockerfile
+++ b/php_fpm-alpine3.9/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_fpm-stretch/Dockerfile b/php_fpm-stretch/Dockerfile
index 5035420..900414e 100644
--- a/php_fpm-stretch/Dockerfile
+++ b/php_fpm-stretch/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_fpm/Dockerfile b/php_fpm/Dockerfile
index cfe1e2e..e6aa80d 100644
--- a/php_fpm/Dockerfile
+++ b/php_fpm/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_latest/Dockerfile b/php_latest/Dockerfile
index 69587e0..c979593 100644
--- a/php_latest/Dockerfile
+++ b/php_latest/Dockerfile
@@ -57,7 +57,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_rc-alpine/Dockerfile b/php_rc-alpine/Dockerfile
index af4e3c8..280ac75 100644
--- a/php_rc-alpine/Dockerfile
+++ b/php_rc-alpine/Dockerfile
@@ -55,7 +55,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_rc-apache/Dockerfile b/php_rc-apache/Dockerfile
index d6c15d9..909db0f 100644
--- a/php_rc-apache/Dockerfile
+++ b/php_rc-apache/Dockerfile
@@ -117,7 +117,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --with-apxs2 --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_rc-fpm-alpine/Dockerfile b/php_rc-fpm-alpine/Dockerfile
index dc4c3c4..b24c428 100644
--- a/php_rc-fpm-alpine/Dockerfile
+++ b/php_rc-fpm-alpine/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_rc-fpm/Dockerfile b/php_rc-fpm/Dockerfile
index fc92dd8..690baa4 100644
--- a/php_rc-fpm/Dockerfile
+++ b/php_rc-fpm/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_rc-zts-alpine/Dockerfile b/php_rc-zts-alpine/Dockerfile
index b91b1a8..175c196 100644
--- a/php_rc-zts-alpine/Dockerfile
+++ b/php_rc-zts-alpine/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_rc-zts/Dockerfile b/php_rc-zts/Dockerfile
index d910b95..f12bbb3 100644
--- a/php_rc-zts/Dockerfile
+++ b/php_rc-zts/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_rc/Dockerfile b/php_rc/Dockerfile
index 682bc8f..a320110 100644
--- a/php_rc/Dockerfile
+++ b/php_rc/Dockerfile
@@ -57,7 +57,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_stretch/Dockerfile b/php_stretch/Dockerfile
index 9b31530..0af006a 100644
--- a/php_stretch/Dockerfile
+++ b/php_stretch/Dockerfile
@@ -57,7 +57,8 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_zts-alpine/Dockerfile b/php_zts-alpine/Dockerfile
index fab6523..201f092 100644
--- a/php_zts-alpine/Dockerfile
+++ b/php_zts-alpine/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_zts-alpine3.9/Dockerfile b/php_zts-alpine3.9/Dockerfile
index 8333625..aabbaba 100644
--- a/php_zts-alpine3.9/Dockerfile
+++ b/php_zts-alpine3.9/Dockerfile
@@ -56,7 +56,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_zts-stretch/Dockerfile b/php_zts-stretch/Dockerfile
index 615d3a7..b46f287 100644
--- a/php_zts-stretch/Dockerfile
+++ b/php_zts-stretch/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
diff --git a/php_zts/Dockerfile b/php_zts/Dockerfile
index 8a2b72f..ebdc761 100644
--- a/php_zts/Dockerfile
+++ b/php_zts/Dockerfile
@@ -58,7 +58,8 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts --disable-cgi
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# Adds GNU HASH segments to generated executables (this is used if present, and is much faster than sysv hash; in this configuration, sysv hash is also generated)
# https://github.com/docker-library/php/issues/272
-ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2"
+# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
+ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -Wl,--hash-style=both -pie"
|
Build test of #6851; 3cbf5ae; $ bashbrew build php:7.4.0RC4-cli-buster
Building bashbrew/cache:94cfb4b943d08ef8a62157d866a334e8fcdadec88919290ba9ec02ccc1f21282 (php:7.4.0RC4-cli-buster)
Tagging php:7.4.0RC4-cli-buster
Tagging php:7.4-rc-cli-buster
Tagging php:rc-cli-buster
Tagging php:7.4.0RC4-buster
Tagging php:7.4-rc-buster
Tagging php:rc-buster
Tagging php:7.4.0RC4-cli
Tagging php:7.4-rc-cli
Tagging php:rc-cli
Tagging php:7.4.0RC4
Tagging php:7.4-rc
Tagging php:rc
$ test/run.sh php:7.4.0RC4-cli-buster
testing php:7.4.0RC4-cli-buster
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.4.0RC4-apache-buster
Building bashbrew/cache:9513384d64120be8233021176028e2d3ed5f87413bca29995b5ce1a480c22c11 (php:7.4.0RC4-apache-buster)
Tagging php:7.4.0RC4-apache-buster
Tagging php:7.4-rc-apache-buster
Tagging php:rc-apache-buster
Tagging php:7.4.0RC4-apache
Tagging php:7.4-rc-apache
Tagging php:rc-apache
$ test/run.sh php:7.4.0RC4-apache-buster
testing php:7.4.0RC4-apache-buster
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.4.0RC4-fpm-buster
Building bashbrew/cache:48f4c1f225606e902efd2dc3e7baa10ddced35ebf8cff49b60f764200f63f053 (php:7.4.0RC4-fpm-buster)
Tagging php:7.4.0RC4-fpm-buster
Tagging php:7.4-rc-fpm-buster
Tagging php:rc-fpm-buster
Tagging php:7.4.0RC4-fpm
Tagging php:7.4-rc-fpm
Tagging php:rc-fpm
$ test/run.sh php:7.4.0RC4-fpm-buster
testing php:7.4.0RC4-fpm-buster
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.4.0RC4-zts-buster
Building bashbrew/cache:f24749eb732be68e64673dcec255d6ab3005aa73f9c3099c654335a22e40580b (php:7.4.0RC4-zts-buster)
Tagging php:7.4.0RC4-zts-buster
Tagging php:7.4-rc-zts-buster
Tagging php:rc-zts-buster
Tagging php:7.4.0RC4-zts
Tagging php:7.4-rc-zts
Tagging php:rc-zts
$ test/run.sh php:7.4.0RC4-zts-buster
testing php:7.4.0RC4-zts-buster
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.4.0RC4-cli-alpine3.10
Building bashbrew/cache:a464204d2cbc185204e007c536e9772df2ebd326bfc86fa82cb04c85d485fe23 (php:7.4.0RC4-cli-alpine3.10)
Tagging php:7.4.0RC4-cli-alpine3.10
Tagging php:7.4-rc-cli-alpine3.10
Tagging php:rc-cli-alpine3.10
Tagging php:7.4.0RC4-alpine3.10
Tagging php:7.4-rc-alpine3.10
Tagging php:rc-alpine3.10
Tagging php:7.4.0RC4-cli-alpine
Tagging php:7.4-rc-cli-alpine
Tagging php:rc-cli-alpine
Tagging php:7.4.0RC4-alpine
Tagging php:7.4-rc-alpine
Tagging php:rc-alpine
$ test/run.sh php:7.4.0RC4-cli-alpine3.10
testing php:7.4.0RC4-cli-alpine3.10
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.4.0RC4-fpm-alpine3.10
Building bashbrew/cache:5c6f5b10d34ceb55652e9ed75f4f71e0a4863957622d61c9c3a56c51fda8ea5d (php:7.4.0RC4-fpm-alpine3.10)
Tagging php:7.4.0RC4-fpm-alpine3.10
Tagging php:7.4-rc-fpm-alpine3.10
Tagging php:rc-fpm-alpine3.10
Tagging php:7.4.0RC4-fpm-alpine
Tagging php:7.4-rc-fpm-alpine
Tagging php:rc-fpm-alpine
$ test/run.sh php:7.4.0RC4-fpm-alpine3.10
testing php:7.4.0RC4-fpm-alpine3.10
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.4.0RC4-zts-alpine3.10
Building bashbrew/cache:389bda499a5e068aed767b2cc5725606d2bf4f3f1fc14076dded25e7d33f7ccf (php:7.4.0RC4-zts-alpine3.10)
Tagging php:7.4.0RC4-zts-alpine3.10
Tagging php:7.4-rc-zts-alpine3.10
Tagging php:rc-zts-alpine3.10
Tagging php:7.4.0RC4-zts-alpine
Tagging php:7.4-rc-zts-alpine
Tagging php:rc-zts-alpine
$ test/run.sh php:7.4.0RC4-zts-alpine3.10
testing php:7.4.0RC4-zts-alpine3.10
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.3.10-cli-buster
Building bashbrew/cache:99b8ea0bee34240fb9de32ad42a7a138d8681fa277a43e2ebae774628176bccf (php:7.3.10-cli-buster)
Tagging php:7.3.10-cli-buster
Tagging php:7.3-cli-buster
Tagging php:7-cli-buster
Tagging php:cli-buster
Tagging php:7.3.10-buster
Tagging php:7.3-buster
Tagging php:7-buster
Tagging php:buster
Tagging php:7.3.10-cli
Tagging php:7.3-cli
Tagging php:7-cli
Tagging php:cli
Tagging php:7.3.10
Tagging php:7.3
Tagging php:7
Tagging php:latest
$ test/run.sh php:7.3.10-cli-buster
testing php:7.3.10-cli-buster
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.3.10-apache-buster
Building bashbrew/cache:9ddeb703c73887569ca3e17804b9df4fb2173fb8e8c4314ee5443a21cd8ef1af (php:7.3.10-apache-buster)
Tagging php:7.3.10-apache-buster
Tagging php:7.3-apache-buster
Tagging php:7-apache-buster
Tagging php:apache-buster
Tagging php:7.3.10-apache
Tagging php:7.3-apache
Tagging php:7-apache
Tagging php:apache
$ test/run.sh php:7.3.10-apache-buster
testing php:7.3.10-apache-buster
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.3.10-fpm-buster
Building bashbrew/cache:826ed7c4a3c9e8e407a173f0c3ee129584597265cadc99573b5e7d975de13404 (php:7.3.10-fpm-buster)
Tagging php:7.3.10-fpm-buster
Tagging php:7.3-fpm-buster
Tagging php:7-fpm-buster
Tagging php:fpm-buster
Tagging php:7.3.10-fpm
Tagging php:7.3-fpm
Tagging php:7-fpm
Tagging php:fpm
$ test/run.sh php:7.3.10-fpm-buster
testing php:7.3.10-fpm-buster
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.3.10-zts-buster
Building bashbrew/cache:42d6e230332029705292b28fce02effa93a76f9cf4e3135fc18de1990d232bea (php:7.3.10-zts-buster)
Tagging php:7.3.10-zts-buster
Tagging php:7.3-zts-buster
Tagging php:7-zts-buster
Tagging php:zts-buster
Tagging php:7.3.10-zts
Tagging php:7.3-zts
Tagging php:7-zts
Tagging php:zts
$ test/run.sh php:7.3.10-zts-buster
testing php:7.3.10-zts-buster
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.3.10-cli-stretch
Building bashbrew/cache:767f473269327f2120b05c524e675128bfee2f04ce218a659b4b156b5f2c79c7 (php:7.3.10-cli-stretch)
Tagging php:7.3.10-cli-stretch
Tagging php:7.3-cli-stretch
Tagging php:7-cli-stretch
Tagging php:cli-stretch
Tagging php:7.3.10-stretch
Tagging php:7.3-stretch
Tagging php:7-stretch
Tagging php:stretch
$ test/run.sh php:7.3.10-cli-stretch
testing php:7.3.10-cli-stretch
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.3.10-apache-stretch
Building bashbrew/cache:b841a6e3d7dbb42873f39728cef5646f09914374075c07cd4d7d888d6af55d94 (php:7.3.10-apache-stretch)
Tagging php:7.3.10-apache-stretch
Tagging php:7.3-apache-stretch
Tagging php:7-apache-stretch
Tagging php:apache-stretch
$ test/run.sh php:7.3.10-apache-stretch
testing php:7.3.10-apache-stretch
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.3.10-fpm-stretch
Building bashbrew/cache:92710dbd5c9810f8ac24dbb9c00b0c7d524521bbe3dd97b0755fc053abc3918d (php:7.3.10-fpm-stretch)
Tagging php:7.3.10-fpm-stretch
Tagging php:7.3-fpm-stretch
Tagging php:7-fpm-stretch
Tagging php:fpm-stretch
$ test/run.sh php:7.3.10-fpm-stretch
testing php:7.3.10-fpm-stretch
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.3.10-zts-stretch
Building bashbrew/cache:904c56c20b23859c35f09c58b4b81132faca83c0ba59ac52e6fc2ef01058554a (php:7.3.10-zts-stretch)
Tagging php:7.3.10-zts-stretch
Tagging php:7.3-zts-stretch
Tagging php:7-zts-stretch
Tagging php:zts-stretch
$ test/run.sh php:7.3.10-zts-stretch
testing php:7.3.10-zts-stretch
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.3.10-cli-alpine3.10
Building bashbrew/cache:5fce1fdbc4074819ea8322486119c1abffd2ec527a91cf8e240c9b8d03a0fc01 (php:7.3.10-cli-alpine3.10)
Tagging php:7.3.10-cli-alpine3.10
Tagging php:7.3-cli-alpine3.10
Tagging php:7-cli-alpine3.10
Tagging php:cli-alpine3.10
Tagging php:7.3.10-alpine3.10
Tagging php:7.3-alpine3.10
Tagging php:7-alpine3.10
Tagging php:alpine3.10
Tagging php:7.3.10-cli-alpine
Tagging php:7.3-cli-alpine
Tagging php:7-cli-alpine
Tagging php:cli-alpine
Tagging php:7.3.10-alpine
Tagging php:7.3-alpine
Tagging php:7-alpine
Tagging php:alpine
$ test/run.sh php:7.3.10-cli-alpine3.10
testing php:7.3.10-cli-alpine3.10
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.3.10-fpm-alpine3.10
Building bashbrew/cache:765d49c73f7cbc5866845cca044625d6f38cc798ffeb876847c720c3f430219a (php:7.3.10-fpm-alpine3.10)
Tagging php:7.3.10-fpm-alpine3.10
Tagging php:7.3-fpm-alpine3.10
Tagging php:7-fpm-alpine3.10
Tagging php:fpm-alpine3.10
Tagging php:7.3.10-fpm-alpine
Tagging php:7.3-fpm-alpine
Tagging php:7-fpm-alpine
Tagging php:fpm-alpine
$ test/run.sh php:7.3.10-fpm-alpine3.10
testing php:7.3.10-fpm-alpine3.10
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.3.10-zts-alpine3.10
Building bashbrew/cache:72f5931678110a197c2e85af07d81bb6a2f0a53e1aafb1bba0917cc25f470099 (php:7.3.10-zts-alpine3.10)
Tagging php:7.3.10-zts-alpine3.10
Tagging php:7.3-zts-alpine3.10
Tagging php:7-zts-alpine3.10
Tagging php:zts-alpine3.10
Tagging php:7.3.10-zts-alpine
Tagging php:7.3-zts-alpine
Tagging php:7-zts-alpine
Tagging php:zts-alpine
$ test/run.sh php:7.3.10-zts-alpine3.10
testing php:7.3.10-zts-alpine3.10
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.3.10-cli-alpine3.9
Building bashbrew/cache:89ad132fc6ccb32f4ff4ec42eb6aae17987b1549b526f7d7c489805907070d98 (php:7.3.10-cli-alpine3.9)
Tagging php:7.3.10-cli-alpine3.9
Tagging php:7.3-cli-alpine3.9
Tagging php:7-cli-alpine3.9
Tagging php:cli-alpine3.9
Tagging php:7.3.10-alpine3.9
Tagging php:7.3-alpine3.9
Tagging php:7-alpine3.9
Tagging php:alpine3.9
$ test/run.sh php:7.3.10-cli-alpine3.9
testing php:7.3.10-cli-alpine3.9
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.3.10-fpm-alpine3.9
Building bashbrew/cache:196301fd27e1e3e0476bb458b4886cd203613ca94503f21c9cbb03e5b11994ce (php:7.3.10-fpm-alpine3.9)
Tagging php:7.3.10-fpm-alpine3.9
Tagging php:7.3-fpm-alpine3.9
Tagging php:7-fpm-alpine3.9
Tagging php:fpm-alpine3.9
$ test/run.sh php:7.3.10-fpm-alpine3.9
testing php:7.3.10-fpm-alpine3.9
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.3.10-zts-alpine3.9
Building bashbrew/cache:885070a30323ebe2aea397cd433632d19542f5400ebbb7e5bbcdfcf428f72210 (php:7.3.10-zts-alpine3.9)
Tagging php:7.3.10-zts-alpine3.9
Tagging php:7.3-zts-alpine3.9
Tagging php:7-zts-alpine3.9
Tagging php:zts-alpine3.9
$ test/run.sh php:7.3.10-zts-alpine3.9
testing php:7.3.10-zts-alpine3.9
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.2.23-cli-buster
Building bashbrew/cache:30886f9182266085ebc03f8b3b65c1b19cd16fd4bfdf02f5712aa1a64cf6158b (php:7.2.23-cli-buster)
Tagging php:7.2.23-cli-buster
Tagging php:7.2-cli-buster
Tagging php:7.2.23-buster
Tagging php:7.2-buster
Tagging php:7.2.23-cli
Tagging php:7.2-cli
Tagging php:7.2.23
Tagging php:7.2
$ test/run.sh php:7.2.23-cli-buster
testing php:7.2.23-cli-buster
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.2.23-apache-buster
Building bashbrew/cache:e33dc72426357d3ae8e7fba8f4c5a5ed09a4355cbe25630e9a030ab129d21f89 (php:7.2.23-apache-buster)
Tagging php:7.2.23-apache-buster
Tagging php:7.2-apache-buster
Tagging php:7.2.23-apache
Tagging php:7.2-apache
$ test/run.sh php:7.2.23-apache-buster
testing php:7.2.23-apache-buster
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.2.23-fpm-buster
Building bashbrew/cache:f4119d1b2e9f823bb47bc560012e2ef7eefeba18a5135026473cac05e5aaac13 (php:7.2.23-fpm-buster)
Tagging php:7.2.23-fpm-buster
Tagging php:7.2-fpm-buster
Tagging php:7.2.23-fpm
Tagging php:7.2-fpm
$ test/run.sh php:7.2.23-fpm-buster
testing php:7.2.23-fpm-buster
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.2.23-zts-buster
Building bashbrew/cache:d1b632999addeccadb651342748e83fcb2392d1eaf6f8f3c34aedce9dfa7cfc2 (php:7.2.23-zts-buster)
Tagging php:7.2.23-zts-buster
Tagging php:7.2-zts-buster
Tagging php:7.2.23-zts
Tagging php:7.2-zts
$ test/run.sh php:7.2.23-zts-buster
testing php:7.2.23-zts-buster
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.2.23-cli-stretch
Building bashbrew/cache:361fdc94645257bc75ea498b27fb8e54536bfbfb0c4eed8ae801a13a3834ed9c (php:7.2.23-cli-stretch)
Tagging php:7.2.23-cli-stretch
Tagging php:7.2-cli-stretch
Tagging php:7.2.23-stretch
Tagging php:7.2-stretch
$ test/run.sh php:7.2.23-cli-stretch
testing php:7.2.23-cli-stretch
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.2.23-apache-stretch
Building bashbrew/cache:bbcd7fc1e6b7ce69ff17f8df5490f2b26b2d659be942387e6503d9b0c1ffc099 (php:7.2.23-apache-stretch)
Tagging php:7.2.23-apache-stretch
Tagging php:7.2-apache-stretch
$ test/run.sh php:7.2.23-apache-stretch
testing php:7.2.23-apache-stretch
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.2.23-fpm-stretch
Building bashbrew/cache:b22561dff19b2307fac5402975928444afa17beb000fea8a750b53e2903bb0fd (php:7.2.23-fpm-stretch)
Tagging php:7.2.23-fpm-stretch
Tagging php:7.2-fpm-stretch
$ test/run.sh php:7.2.23-fpm-stretch
testing php:7.2.23-fpm-stretch
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.2.23-zts-stretch
Building bashbrew/cache:2976bae6eec9ca4bcfaddc68db7e058d98ad1ded2dbfdea58e2306eb3b70f70e (php:7.2.23-zts-stretch)
Tagging php:7.2.23-zts-stretch
Tagging php:7.2-zts-stretch
$ test/run.sh php:7.2.23-zts-stretch
testing php:7.2.23-zts-stretch
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.2.23-cli-alpine3.10
Building bashbrew/cache:0729c17b49b8be7936b190a7b52a5a29ba474a8b34c758d23e674fd0031b32f3 (php:7.2.23-cli-alpine3.10)
Tagging php:7.2.23-cli-alpine3.10
Tagging php:7.2-cli-alpine3.10
Tagging php:7.2.23-alpine3.10
Tagging php:7.2-alpine3.10
Tagging php:7.2.23-cli-alpine
Tagging php:7.2-cli-alpine
Tagging php:7.2.23-alpine
Tagging php:7.2-alpine
$ test/run.sh php:7.2.23-cli-alpine3.10
testing php:7.2.23-cli-alpine3.10
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.2.23-fpm-alpine3.10
Building bashbrew/cache:75d9b1ca223436e0355c1c246d437e56b10245761705056b62a6e882b83b2ab8 (php:7.2.23-fpm-alpine3.10)
Tagging php:7.2.23-fpm-alpine3.10
Tagging php:7.2-fpm-alpine3.10
Tagging php:7.2.23-fpm-alpine
Tagging php:7.2-fpm-alpine
$ test/run.sh php:7.2.23-fpm-alpine3.10
testing php:7.2.23-fpm-alpine3.10
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.2.23-zts-alpine3.10
Building bashbrew/cache:42e1aa2fd2f04b8125e25ad0e9e547af40a11ad34ac08e8e7f78f48a2dad2bdf (php:7.2.23-zts-alpine3.10)
Tagging php:7.2.23-zts-alpine3.10
Tagging php:7.2-zts-alpine3.10
Tagging php:7.2.23-zts-alpine
Tagging php:7.2-zts-alpine
$ test/run.sh php:7.2.23-zts-alpine3.10
testing php:7.2.23-zts-alpine3.10
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.2.23-cli-alpine3.9
Building bashbrew/cache:e23add87b366409bd445ff0a0fab77a2bdc1ce58b9517d2d3196e4784dd8fc3e (php:7.2.23-cli-alpine3.9)
Tagging php:7.2.23-cli-alpine3.9
Tagging php:7.2-cli-alpine3.9
Tagging php:7.2.23-alpine3.9
Tagging php:7.2-alpine3.9
$ test/run.sh php:7.2.23-cli-alpine3.9
testing php:7.2.23-cli-alpine3.9
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.2.23-fpm-alpine3.9
Building bashbrew/cache:172037ec9f486a295171fcb3798b14f3426e463722856fd0f3fa78e86ea82f9e (php:7.2.23-fpm-alpine3.9)
Tagging php:7.2.23-fpm-alpine3.9
Tagging php:7.2-fpm-alpine3.9
$ test/run.sh php:7.2.23-fpm-alpine3.9
testing php:7.2.23-fpm-alpine3.9
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.2.23-zts-alpine3.9
Building bashbrew/cache:04dcc52ebc581c5b8e274b33b8e8c180c28de214896f270407220a04e586d9ad (php:7.2.23-zts-alpine3.9)
Tagging php:7.2.23-zts-alpine3.9
Tagging php:7.2-zts-alpine3.9
$ test/run.sh php:7.2.23-zts-alpine3.9
testing php:7.2.23-zts-alpine3.9
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.1.32-cli-buster
Building bashbrew/cache:69b891f060ff86fbf0a807f56fe8ae532d62f63e239c9eef4ca0186b0efb1d00 (php:7.1.32-cli-buster)
Tagging php:7.1.32-cli-buster
Tagging php:7.1-cli-buster
Tagging php:7.1.32-buster
Tagging php:7.1-buster
Tagging php:7.1.32-cli
Tagging php:7.1-cli
Tagging php:7.1.32
Tagging php:7.1
$ test/run.sh php:7.1.32-cli-buster
testing php:7.1.32-cli-buster
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.1.32-apache-buster
Building bashbrew/cache:41b2153934caf3cb736e0658946f9a2a5126872cd81999ab2bab76245a5ccfdc (php:7.1.32-apache-buster)
Tagging php:7.1.32-apache-buster
Tagging php:7.1-apache-buster
Tagging php:7.1.32-apache
Tagging php:7.1-apache
$ test/run.sh php:7.1.32-apache-buster
testing php:7.1.32-apache-buster
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.1.32-fpm-buster
Building bashbrew/cache:f61ca3ff991d985d8ca95b2de0315844a61dc51ff10e323764bc3db05cee7bdd (php:7.1.32-fpm-buster)
Tagging php:7.1.32-fpm-buster
Tagging php:7.1-fpm-buster
Tagging php:7.1.32-fpm
Tagging php:7.1-fpm
$ test/run.sh php:7.1.32-fpm-buster
testing php:7.1.32-fpm-buster
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.1.32-zts-buster
Building bashbrew/cache:b5772bc69890a0cbc79fe04a4c6e100c33c2d4d2e9a2c7266bef7e317291f355 (php:7.1.32-zts-buster)
Tagging php:7.1.32-zts-buster
Tagging php:7.1-zts-buster
Tagging php:7.1.32-zts
Tagging php:7.1-zts
$ test/run.sh php:7.1.32-zts-buster
testing php:7.1.32-zts-buster
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.1.32-cli-stretch
Building bashbrew/cache:430e0c96e2965bdff5a0b05fe570cadca22cc20f65a14d7fd5bcbb9c59e0b8aa (php:7.1.32-cli-stretch)
Tagging php:7.1.32-cli-stretch
Tagging php:7.1-cli-stretch
Tagging php:7.1.32-stretch
Tagging php:7.1-stretch
$ test/run.sh php:7.1.32-cli-stretch
testing php:7.1.32-cli-stretch
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.1.32-apache-stretch
Building bashbrew/cache:64499993b36504722776a5a97a4c3d720cc96251aa4f294b42b57eccd7c04801 (php:7.1.32-apache-stretch)
Tagging php:7.1.32-apache-stretch
Tagging php:7.1-apache-stretch
$ test/run.sh php:7.1.32-apache-stretch
testing php:7.1.32-apache-stretch
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.1.32-fpm-stretch
Building bashbrew/cache:7a45a0b220539bf67e12490fcef28a0dff0107f93b1ae569df325aa29be60fe7 (php:7.1.32-fpm-stretch)
Tagging php:7.1.32-fpm-stretch
Tagging php:7.1-fpm-stretch
$ test/run.sh php:7.1.32-fpm-stretch
testing php:7.1.32-fpm-stretch
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.1.32-zts-stretch
Building bashbrew/cache:9e03ea3b52ef8b23903d1f994fbdd9bcff76f9e350a32c891c027eff022f72c2 (php:7.1.32-zts-stretch)
Tagging php:7.1.32-zts-stretch
Tagging php:7.1-zts-stretch
$ test/run.sh php:7.1.32-zts-stretch
testing php:7.1.32-zts-stretch
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.1.32-cli-alpine3.10
Building bashbrew/cache:357bd3cad6225f5f1d9ff4e0f8adb8b91e57a7c764365e6277cfdf6b2bd2f096 (php:7.1.32-cli-alpine3.10)
Tagging php:7.1.32-cli-alpine3.10
Tagging php:7.1-cli-alpine3.10
Tagging php:7.1.32-alpine3.10
Tagging php:7.1-alpine3.10
Tagging php:7.1.32-cli-alpine
Tagging php:7.1-cli-alpine
Tagging php:7.1.32-alpine
Tagging php:7.1-alpine
$ test/run.sh php:7.1.32-cli-alpine3.10
testing php:7.1.32-cli-alpine3.10
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.1.32-fpm-alpine3.10
Building bashbrew/cache:e5a54d9c592994d3e2cb45c3d091014d08de559befd7a01bcad2cff5f9a42d0a (php:7.1.32-fpm-alpine3.10)
Tagging php:7.1.32-fpm-alpine3.10
Tagging php:7.1-fpm-alpine3.10
Tagging php:7.1.32-fpm-alpine
Tagging php:7.1-fpm-alpine
$ test/run.sh php:7.1.32-fpm-alpine3.10
testing php:7.1.32-fpm-alpine3.10
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.1.32-zts-alpine3.10
Building bashbrew/cache:b2c09628bf4dcfb7920384a4effa1ca2524625acbab84f2596a108fade9be4a5 (php:7.1.32-zts-alpine3.10)
Tagging php:7.1.32-zts-alpine3.10
Tagging php:7.1-zts-alpine3.10
Tagging php:7.1.32-zts-alpine
Tagging php:7.1-zts-alpine
$ test/run.sh php:7.1.32-zts-alpine3.10
testing php:7.1.32-zts-alpine3.10
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.1.32-cli-alpine3.9
Building bashbrew/cache:337648fbac90c5988f8cd650a94082be8ae67c4e597908c93c75ed03eadae9bc (php:7.1.32-cli-alpine3.9)
Tagging php:7.1.32-cli-alpine3.9
Tagging php:7.1-cli-alpine3.9
Tagging php:7.1.32-alpine3.9
Tagging php:7.1-alpine3.9
$ test/run.sh php:7.1.32-cli-alpine3.9
testing php:7.1.32-cli-alpine3.9
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
$ bashbrew build php:7.1.32-fpm-alpine3.9
Building bashbrew/cache:9f2f1766d6f3d86cdd6955aac16e6cf7a756d793be8f1acd08e111802777c104 (php:7.1.32-fpm-alpine3.9)
Tagging php:7.1.32-fpm-alpine3.9
Tagging php:7.1-fpm-alpine3.9
$ test/run.sh php:7.1.32-fpm-alpine3.9
testing php:7.1.32-fpm-alpine3.9
'utc' [1/8]...passed
'cve-2014--shellshock' [2/8]...passed
'no-hard-coded-passwords' [3/8]...passed
'override-cmd' [4/8]...passed
'php-ext-install' [5/8]...passed
'php-hello-world' [6/8]...passed
'php-argon2' [7/8]...passed
'php-fpm-hello-web' [8/8]...passed
$ bashbrew build php:7.1.32-zts-alpine3.9
Building bashbrew/cache:5ba65fdd4ff0e55d955b6d6c914328fe76fbb631644cb1ddd10d2d62f0fd62f7 (php:7.1.32-zts-alpine3.9)
Tagging php:7.1.32-zts-alpine3.9
Tagging php:7.1-zts-alpine3.9
$ test/run.sh php:7.1.32-zts-alpine3.9
testing php:7.1.32-zts-alpine3.9
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-argon2' [7/7]...passed
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes: