mirror of
https://github.com/danog/php.git
synced 2024-11-30 04:29:16 +01:00
Merge pull request #1212 from infosiftr/find-perm
Fix "find -perm" syntax (and ignore "strip" failures but not "find" failures)
This commit is contained in:
commit
d7f46271b4
9
7.3/alpine3.13/cli/Dockerfile
generated
9
7.3/alpine3.13/cli/Dockerfile
generated
@ -151,7 +151,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.3/alpine3.13/fpm/Dockerfile
generated
9
7.3/alpine3.13/fpm/Dockerfile
generated
@ -157,7 +157,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.3/alpine3.13/zts/Dockerfile
generated
9
7.3/alpine3.13/zts/Dockerfile
generated
@ -155,7 +155,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.3/alpine3.14/cli/Dockerfile
generated
9
7.3/alpine3.14/cli/Dockerfile
generated
@ -150,7 +150,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.3/alpine3.14/fpm/Dockerfile
generated
9
7.3/alpine3.14/fpm/Dockerfile
generated
@ -156,7 +156,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.3/alpine3.14/zts/Dockerfile
generated
9
7.3/alpine3.14/zts/Dockerfile
generated
@ -154,7 +154,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.3/bullseye/apache/Dockerfile
generated
9
7.3/bullseye/apache/Dockerfile
generated
@ -229,7 +229,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.3/bullseye/cli/Dockerfile
generated
9
7.3/bullseye/cli/Dockerfile
generated
@ -169,7 +169,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.3/bullseye/fpm/Dockerfile
generated
9
7.3/bullseye/fpm/Dockerfile
generated
@ -172,7 +172,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.3/bullseye/zts/Dockerfile
generated
9
7.3/bullseye/zts/Dockerfile
generated
@ -173,7 +173,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.3/buster/apache/Dockerfile
generated
9
7.3/buster/apache/Dockerfile
generated
@ -229,7 +229,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.3/buster/cli/Dockerfile
generated
9
7.3/buster/cli/Dockerfile
generated
@ -169,7 +169,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.3/buster/fpm/Dockerfile
generated
9
7.3/buster/fpm/Dockerfile
generated
@ -172,7 +172,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.3/buster/zts/Dockerfile
generated
9
7.3/buster/zts/Dockerfile
generated
@ -173,7 +173,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/alpine3.13/cli/Dockerfile
generated
9
7.4/alpine3.13/cli/Dockerfile
generated
@ -156,7 +156,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/alpine3.13/fpm/Dockerfile
generated
9
7.4/alpine3.13/fpm/Dockerfile
generated
@ -162,7 +162,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/alpine3.13/zts/Dockerfile
generated
9
7.4/alpine3.13/zts/Dockerfile
generated
@ -160,7 +160,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/alpine3.14/cli/Dockerfile
generated
9
7.4/alpine3.14/cli/Dockerfile
generated
@ -155,7 +155,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/alpine3.14/fpm/Dockerfile
generated
9
7.4/alpine3.14/fpm/Dockerfile
generated
@ -161,7 +161,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/alpine3.14/zts/Dockerfile
generated
9
7.4/alpine3.14/zts/Dockerfile
generated
@ -159,7 +159,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/bullseye/apache/Dockerfile
generated
9
7.4/bullseye/apache/Dockerfile
generated
@ -233,7 +233,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/bullseye/cli/Dockerfile
generated
9
7.4/bullseye/cli/Dockerfile
generated
@ -173,7 +173,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/bullseye/fpm/Dockerfile
generated
9
7.4/bullseye/fpm/Dockerfile
generated
@ -176,7 +176,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/bullseye/zts/Dockerfile
generated
9
7.4/bullseye/zts/Dockerfile
generated
@ -177,7 +177,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/buster/apache/Dockerfile
generated
9
7.4/buster/apache/Dockerfile
generated
@ -233,7 +233,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/buster/cli/Dockerfile
generated
9
7.4/buster/cli/Dockerfile
generated
@ -173,7 +173,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/buster/fpm/Dockerfile
generated
9
7.4/buster/fpm/Dockerfile
generated
@ -176,7 +176,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
7.4/buster/zts/Dockerfile
generated
9
7.4/buster/zts/Dockerfile
generated
@ -177,7 +177,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.0/alpine3.13/cli/Dockerfile
generated
9
8.0/alpine3.13/cli/Dockerfile
generated
@ -156,7 +156,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.0/alpine3.13/fpm/Dockerfile
generated
9
8.0/alpine3.13/fpm/Dockerfile
generated
@ -162,7 +162,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.0/alpine3.14/cli/Dockerfile
generated
9
8.0/alpine3.14/cli/Dockerfile
generated
@ -155,7 +155,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.0/alpine3.14/fpm/Dockerfile
generated
9
8.0/alpine3.14/fpm/Dockerfile
generated
@ -161,7 +161,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.0/bullseye/apache/Dockerfile
generated
9
8.0/bullseye/apache/Dockerfile
generated
@ -233,7 +233,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.0/bullseye/cli/Dockerfile
generated
9
8.0/bullseye/cli/Dockerfile
generated
@ -173,7 +173,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.0/bullseye/fpm/Dockerfile
generated
9
8.0/bullseye/fpm/Dockerfile
generated
@ -176,7 +176,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.0/bullseye/zts/Dockerfile
generated
9
8.0/bullseye/zts/Dockerfile
generated
@ -177,7 +177,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.0/buster/apache/Dockerfile
generated
9
8.0/buster/apache/Dockerfile
generated
@ -233,7 +233,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.0/buster/cli/Dockerfile
generated
9
8.0/buster/cli/Dockerfile
generated
@ -173,7 +173,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.0/buster/fpm/Dockerfile
generated
9
8.0/buster/fpm/Dockerfile
generated
@ -176,7 +176,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.0/buster/zts/Dockerfile
generated
9
8.0/buster/zts/Dockerfile
generated
@ -177,7 +177,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.1-rc/alpine3.13/cli/Dockerfile
generated
9
8.1-rc/alpine3.13/cli/Dockerfile
generated
@ -156,7 +156,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.1-rc/alpine3.13/fpm/Dockerfile
generated
9
8.1-rc/alpine3.13/fpm/Dockerfile
generated
@ -162,7 +162,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.1-rc/alpine3.14/cli/Dockerfile
generated
9
8.1-rc/alpine3.14/cli/Dockerfile
generated
@ -155,7 +155,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.1-rc/alpine3.14/fpm/Dockerfile
generated
9
8.1-rc/alpine3.14/fpm/Dockerfile
generated
@ -161,7 +161,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.1-rc/bullseye/apache/Dockerfile
generated
9
8.1-rc/bullseye/apache/Dockerfile
generated
@ -233,7 +233,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.1-rc/bullseye/cli/Dockerfile
generated
9
8.1-rc/bullseye/cli/Dockerfile
generated
@ -173,7 +173,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.1-rc/bullseye/fpm/Dockerfile
generated
9
8.1-rc/bullseye/fpm/Dockerfile
generated
@ -176,7 +176,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.1-rc/bullseye/zts/Dockerfile
generated
9
8.1-rc/bullseye/zts/Dockerfile
generated
@ -177,7 +177,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.1-rc/buster/apache/Dockerfile
generated
9
8.1-rc/buster/apache/Dockerfile
generated
@ -233,7 +233,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.1-rc/buster/cli/Dockerfile
generated
9
8.1-rc/buster/cli/Dockerfile
generated
@ -173,7 +173,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.1-rc/buster/fpm/Dockerfile
generated
9
8.1-rc/buster/fpm/Dockerfile
generated
@ -176,7 +176,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
9
8.1-rc/buster/zts/Dockerfile
generated
9
8.1-rc/buster/zts/Dockerfile
generated
@ -177,7 +177,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
@ -340,7 +340,14 @@ RUN set -eux; \
|
|||||||
make -j "$(nproc)"; \
|
make -j "$(nproc)"; \
|
||||||
find -type f -name '*.a' -delete; \
|
find -type f -name '*.a' -delete; \
|
||||||
make install; \
|
make install; \
|
||||||
find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; \
|
find \
|
||||||
|
/usr/local \
|
||||||
|
-type f \
|
||||||
|
-perm '/0111' \
|
||||||
|
-exec sh -euxc ' \
|
||||||
|
strip --strip-all "$@" || : \
|
||||||
|
' -- '{}' + \
|
||||||
|
; \
|
||||||
make clean; \
|
make clean; \
|
||||||
\
|
\
|
||||||
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
# https://github.com/docker-library/php/issues/692 (copy default example "php.ini" files somewhere easily discoverable)
|
||||||
|
Loading…
Reference in New Issue
Block a user