2023-06-26 22:32:18 UTC
33.9 MB
1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PHPIZE_DEPSautoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
PHP_ASC_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
PHP_CFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_CPPFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_INI_DIR/usr/local/etc/php
PHP_LDFLAGS-Wl,-O1 -pie
PHP_SHA25660b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
PHP_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz
PHP_VERSION8.3.0alpha2
[#000] sha256:b3f50075abd13aad1cb7d8c1427aa59d7fcac88f3690d3f9c3efdbec80fd0856 - 9.1% (3.08 MB)
[#001] sha256:686addfe363578d7327e190b5b07780e2e046ab88a2d36c1d45bf9433e6dcd5a - 7.6% (2.57 MB)
[#002] sha256:2fcfa11cca4a6fe8bb794ac07926f350ef4be9309437a2e4665ef8a89b425b54 - 0.0% (1.23 KB)
[#003] sha256:8b1a40c4c1022edb58f063eb71a5482c5b66ab16c804b7b215db18d809affb5b - 0.0% (268 Bytes)
[#004] sha256:99896f8f1c05102577d055a2d562f2771f2fdfc2339b89d626e3b688270eb414 - 34.64% (11.7 MB)
[#005] sha256:1c978ad94e6a584fe512d0c4c5a0d09218d490f8bd3fc93eba988774eac28096 - 0.0% (497 Bytes)
[#006] sha256:9590b7e6a8c0831fba87c04e6e43ea8e4a232f1888de7d187b61ab603558991b - 48.6% (16.5 MB)
[#007] sha256:32f2aa7f42d5d52f178eb4c2309d9ce3308deac182921c5cc5ade1e08c865a45 - 0.01% (2.39 KB)
[#008] sha256:a37b5ca0ca8ceb6a2a5c130220937fc278d2d20e932e5eb412a6d5933019e76d - 0.05% (18.5 KB)
/bin/sh -c #(nop) ADD file:94bec00e2c0c7f47c81ec4355a29ca23a81b439797d037b1a5a455f36a25dab4 in /
2023-06-14 22:33:22 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-15 06:26:14 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-06-15 06:26:16 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2023-06-15 06:26:16 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-06-15 06:26:17 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-06-15 06:26:17 UTC/bin/sh -c set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html
2023-06-15 06:26:17 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 06:26:17 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 06:26:17 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-06-15 06:26:18 UTC/bin/sh -c #(nop) ENV GPG_KEYS=1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
2023-06-26 22:25:51 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.3.0alpha2
2023-06-26 22:25:52 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz PHP_ASC_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
2023-06-26 22:25:52 UTC/bin/sh -c #(nop) ENV PHP_SHA256=60b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
2023-06-26 22:26:08 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .fetch-deps gnupg; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apk del --no-network .fetch-deps
2023-06-26 22:26:08 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2023-06-26 22:32:16 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS argon2-dev coreutils curl-dev gnu-libiconv-dev libsodium-dev libxml2-dev linux-headers oniguruma-dev openssl-dev readline-dev sqlite-dev ; rm -vf /usr/include/iconv.h; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv=/usr --with-openssl --with-readline --with-zlib --enable-phpdbg --enable-phpdbg-readline --with-pear $(test "$gnuArch" = 's390x-linux-musl' && echo '--without-pcre-jit') ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache $runDeps; apk del --no-network .build-deps; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version
2023-06-26 22:32:17 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2023-06-26 22:32:18 UTC/bin/sh -c docker-php-ext-enable sodium
2023-06-26 22:32:18 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2023-06-26 22:32:18 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2023-06-26 21:53:56 UTC
33.8 MB
1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PHPIZE_DEPSautoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
PHP_ASC_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
PHP_CFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_CPPFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_INI_DIR/usr/local/etc/php
PHP_LDFLAGS-Wl,-O1 -pie
PHP_SHA25660b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
PHP_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz
PHP_VERSION8.3.0alpha2
[#000] sha256:31e352740f534f9ad170f75378a84fe453d6156e40700b882d737a8f4a6988a3 - 9.6% (3.24 MB)
[#001] sha256:f034080c2b5d3afb2ec354e2b425f48df6326f28bcf3d2cee4ed50b9721ba482 - 7.51% (2.54 MB)
[#002] sha256:0b8701d6f7d5844dd4fa64c17ce3e1999f152f0dbfa3ea704bf38e8617e6b4d5 - 0.0% (1.23 KB)
[#003] sha256:259e9197ff8b826653ac60962d424d223ae725c1368f3fbd6efe6853200e945c - 0.0% (269 Bytes)
[#004] sha256:c4da26a04e8d248166f0692c39e475d661d58091ccf6c338d3abe664eab9c611 - 34.79% (11.7 MB)
[#005] sha256:068d166e744810a01b87edd67577a6324424e6091e5f5b5e7dfa8b53e034d8d6 - 0.0% (499 Bytes)
[#006] sha256:aac7b939e756322d2ede062274e7b841324ec9a31c5cae991326717c77c6346b - 48.03% (16.2 MB)
[#007] sha256:f65876f80c9d1186f6bb222c5d381c2f5fd20a898d35fa6222c68f14e39889eb - 0.01% (2.39 KB)
[#008] sha256:1ca74377e15ba631fd0fa9a58c4eee5f431c26c13d109620bc053eb885f6aa73 - 0.05% (18.5 KB)
/bin/sh -c #(nop) ADD file:1da756d12551a0e3e793e02ef87432d69d4968937bd11bed0af215db19dd94cd in /
2023-06-14 20:41:59 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-15 00:31:24 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-06-15 00:31:26 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2023-06-15 00:31:26 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-06-15 00:31:26 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-06-15 00:31:27 UTC/bin/sh -c set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html
2023-06-15 00:31:27 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 00:31:27 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 00:31:27 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-06-15 00:31:27 UTC/bin/sh -c #(nop) ENV GPG_KEYS=1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
2023-06-26 21:50:20 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.3.0alpha2
2023-06-26 21:50:20 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz PHP_ASC_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
2023-06-26 21:50:20 UTC/bin/sh -c #(nop) ENV PHP_SHA256=60b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
2023-06-26 21:50:25 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .fetch-deps gnupg; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apk del --no-network .fetch-deps
2023-06-26 21:50:25 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2023-06-26 21:53:55 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS argon2-dev coreutils curl-dev gnu-libiconv-dev libsodium-dev libxml2-dev linux-headers oniguruma-dev openssl-dev readline-dev sqlite-dev ; rm -vf /usr/include/iconv.h; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv=/usr --with-openssl --with-readline --with-zlib --enable-phpdbg --enable-phpdbg-readline --with-pear $(test "$gnuArch" = 's390x-linux-musl' && echo '--without-pcre-jit') ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache $runDeps; apk del --no-network .build-deps; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version
2023-06-26 21:53:55 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2023-06-26 21:53:56 UTC/bin/sh -c docker-php-ext-enable sodium
2023-06-26 21:53:56 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2023-06-26 21:53:56 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2023-06-26 20:52:50 UTC
32.2 MB
1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PHPIZE_DEPSautoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
PHP_ASC_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
PHP_CFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_CPPFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_INI_DIR/usr/local/etc/php
PHP_LDFLAGS-Wl,-O1 -pie
PHP_SHA25660b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
PHP_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz
PHP_VERSION8.3.0alpha2
[#000] sha256:7836be94d3024e2042069c1095caba0b391f70c4b3d34a0475a503239d73dfba - 9.32% (3 MB)
[#001] sha256:c974e2f4fb5afd0ccf2987ea9cdb17437ec18fae29ffb9fc867ac3086eb74400 - 7.9% (2.54 MB)
[#002] sha256:f64a2d84af76d29961595fccdcdf8d0e78b788f70e833458794d041be66462b5 - 0.0% (1.23 KB)
[#003] sha256:6e225c1eaef0162b3af2e6f6a0e68d0597a6d17226f086e1a5ee69dcd2e5248d - 0.0% (269 Bytes)
[#004] sha256:ffac3ff48be292853615dceec85ea9bb9c51db73d982e0731d4ded523b7dbe71 - 36.51% (11.7 MB)
[#005] sha256:90ba0894cd9a2f37b2ed30e5f2c140d9a11c91edca642769de9cb0592a9eb3e1 - 0.0% (496 Bytes)
[#006] sha256:5ae89886aa2fa8a757a16ccd805b863f662e57bff13ad19be7bbbb7d5dac4dc4 - 46.2% (14.9 MB)
[#007] sha256:8933abfc08672bcf1971d291d977a7cb15b40a5c24de772b59338c7ebc3cd1e3 - 0.01% (2.39 KB)
[#008] sha256:e5d816cfa3f8345b56df7b683839e8de59d26504e17963817101267c93768623 - 0.06% (18.3 KB)
/bin/sh -c #(nop) ADD file:4213782693bf27a9a6de23bc924ef0c4fb6b2d56010fc07b25f81edeba83b0d4 in /
2023-06-14 18:49:20 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-15 00:03:54 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-06-15 00:03:56 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2023-06-15 00:03:56 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-06-15 00:03:56 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-06-15 00:03:57 UTC/bin/sh -c set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html
2023-06-15 00:03:57 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 00:03:57 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 00:03:57 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-06-15 00:03:57 UTC/bin/sh -c #(nop) ENV GPG_KEYS=1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
2023-06-26 20:49:25 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.3.0alpha2
2023-06-26 20:49:25 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz PHP_ASC_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
2023-06-26 20:49:25 UTC/bin/sh -c #(nop) ENV PHP_SHA256=60b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
2023-06-26 20:49:32 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .fetch-deps gnupg; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apk del --no-network .fetch-deps
2023-06-26 20:49:32 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2023-06-26 20:52:48 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS argon2-dev coreutils curl-dev gnu-libiconv-dev libsodium-dev libxml2-dev linux-headers oniguruma-dev openssl-dev readline-dev sqlite-dev ; rm -vf /usr/include/iconv.h; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv=/usr --with-openssl --with-readline --with-zlib --enable-phpdbg --enable-phpdbg-readline --with-pear $(test "$gnuArch" = 's390x-linux-musl' && echo '--without-pcre-jit') ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache $runDeps; apk del --no-network .build-deps; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version
2023-06-26 20:52:49 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2023-06-26 20:52:50 UTC/bin/sh -c docker-php-ext-enable sodium
2023-06-26 20:52:50 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2023-06-26 20:52:50 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2023-06-26 22:00:23 UTC
30.8 MB
1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PHPIZE_DEPSautoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
PHP_ASC_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
PHP_CFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_CPPFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_INI_DIR/usr/local/etc/php
PHP_LDFLAGS-Wl,-O1 -pie
PHP_SHA25660b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
PHP_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz
PHP_VERSION8.3.0alpha2
[#000] sha256:633ba29fd335042456b6e2c073636f6fa30de56f1331c442914739b92a479974 - 8.97% (2.76 MB)
[#001] sha256:36fcad4bb8996a5b45e9295adfb95c371938b842eb57e046b2913e94204a7f33 - 7.74% (2.39 MB)
[#002] sha256:9a2cccda84c43168533736f637359fef9f6288fd02a44c5e793caaaa24105477 - 0.0% (1.23 KB)
[#003] sha256:19901d84d4d52625e92590e32d9e2621e75c0beb01f75489bce2608d20f1c7ba - 0.0% (268 Bytes)
[#004] sha256:4ea07da27f927c5aaa85636e70fd9671cbf5fed2a3b43f8c596358c21f19ef78 - 38.11% (11.7 MB)
[#005] sha256:3ec45d3e9a8ecf5b16227b198f6c5545c0d3115cec8fe6efe997748824307a85 - 0.0% (499 Bytes)
[#006] sha256:3b202a3124d1c5ebd46555e385dbe759a1dab8e99454816d2706b31f3daccbf2 - 45.1% (13.9 MB)
[#007] sha256:bda445494628c38fc9e05158994e7045eb4f510bbab4278bb73f86ae2dd30a59 - 0.01% (2.39 KB)
[#008] sha256:8a10a3389fbe6d374df78e53284bccac5d01c3b344dca6a42830a2b52bfbc69e - 0.06% (18.3 KB)
/bin/sh -c #(nop) ADD file:082f034323c559f3cb9feb6422c88b1ec8017f436d6109e238a5c5384a32a90a in /
2023-06-14 22:36:15 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-15 05:41:14 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-06-15 05:41:15 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2023-06-15 05:41:16 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-06-15 05:41:16 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-06-15 05:41:16 UTC/bin/sh -c set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html
2023-06-15 05:41:16 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 05:41:16 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 05:41:16 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-06-15 05:41:17 UTC/bin/sh -c #(nop) ENV GPG_KEYS=1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
2023-06-26 21:55:29 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.3.0alpha2
2023-06-26 21:55:29 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz PHP_ASC_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
2023-06-26 21:55:30 UTC/bin/sh -c #(nop) ENV PHP_SHA256=60b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
2023-06-26 21:55:36 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .fetch-deps gnupg; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apk del --no-network .fetch-deps
2023-06-26 21:55:36 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2023-06-26 22:00:21 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS argon2-dev coreutils curl-dev gnu-libiconv-dev libsodium-dev libxml2-dev linux-headers oniguruma-dev openssl-dev readline-dev sqlite-dev ; rm -vf /usr/include/iconv.h; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv=/usr --with-openssl --with-readline --with-zlib --enable-phpdbg --enable-phpdbg-readline --with-pear $(test "$gnuArch" = 's390x-linux-musl' && echo '--without-pcre-jit') ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache $runDeps; apk del --no-network .build-deps; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version
2023-06-26 22:00:21 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2023-06-26 22:00:22 UTC/bin/sh -c docker-php-ext-enable sodium
2023-06-26 22:00:23 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2023-06-26 22:00:23 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2023-06-26 22:49:19 UTC
33.7 MB
1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PHPIZE_DEPSautoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
PHP_ASC_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
PHP_CFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_CPPFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_INI_DIR/usr/local/etc/php
PHP_LDFLAGS-Wl,-O1 -pie
PHP_SHA25660b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
PHP_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz
PHP_VERSION8.3.0alpha2
[#000] sha256:8c6d1654570f041603f4cef49c320c8f6f3e401324913009d92a19132cbf1ac0 - 9.42% (3.18 MB)
[#001] sha256:68cbf4f33af4ff20fa90638cea5f48dda44f171afe80c0ca68a40b5c67ee1102 - 7.63% (2.57 MB)
[#002] sha256:b0262450c79d37bc5398bf1154c4bb2681100ef9caf7e008c5d0bd06c3d840a7 - 0.0% (1.23 KB)
[#003] sha256:f4ca0f0b2514d4e2b8323c60eece66557c89959c380362deb6862fe5ffe3ad14 - 0.0% (268 Bytes)
[#004] sha256:3c6834ca7b3022768ad82ee499dcdd3dede149aeddeed585d6da09f021a61deb - 34.85% (11.7 MB)
[#005] sha256:607c6e185580a7bb2b0de41cda2f3ed6318aaff9342d3cb871c5b89cac1bd5ef - 0.0% (497 Bytes)
[#006] sha256:f00ab464b276bb05f7e62ef760d916d52f5e0619e1ad2c5ce82415702c700512 - 48.03% (16.2 MB)
[#007] sha256:6199739e32b29fd486f9cae8c62dc19a728bd9227cbb193196bb07e95dabc81f - 0.01% (2.39 KB)
[#008] sha256:cde9827829e7ee0a23c2790a94af01eed9219f1b178c42c6cd8823e464460df4 - 0.05% (18.3 KB)
/bin/sh -c #(nop) ADD file:289c2fac17119508ced527225d445747cd177111b4a0018a6b04948ecb3b5e29 in /
2023-06-14 20:48:58 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-15 03:05:37 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-06-15 03:05:38 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2023-06-15 03:05:39 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-06-15 03:05:39 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-06-15 03:05:39 UTC/bin/sh -c set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html
2023-06-15 03:05:39 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 03:05:39 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 03:05:39 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-06-15 03:05:39 UTC/bin/sh -c #(nop) ENV GPG_KEYS=1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
2023-06-26 22:45:25 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.3.0alpha2
2023-06-26 22:45:25 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz PHP_ASC_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
2023-06-26 22:45:25 UTC/bin/sh -c #(nop) ENV PHP_SHA256=60b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
2023-06-26 22:45:32 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .fetch-deps gnupg; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apk del --no-network .fetch-deps
2023-06-26 22:45:32 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2023-06-26 22:49:17 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS argon2-dev coreutils curl-dev gnu-libiconv-dev libsodium-dev libxml2-dev linux-headers oniguruma-dev openssl-dev readline-dev sqlite-dev ; rm -vf /usr/include/iconv.h; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv=/usr --with-openssl --with-readline --with-zlib --enable-phpdbg --enable-phpdbg-readline --with-pear $(test "$gnuArch" = 's390x-linux-musl' && echo '--without-pcre-jit') ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache $runDeps; apk del --no-network .build-deps; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version
2023-06-26 22:49:18 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2023-06-26 22:49:19 UTC/bin/sh -c docker-php-ext-enable sodium
2023-06-26 22:49:19 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2023-06-26 22:49:19 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2023-06-26 22:02:36 UTC
34.5 MB
1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PHPIZE_DEPSautoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
PHP_ASC_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
PHP_CFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_CPPFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_INI_DIR/usr/local/etc/php
PHP_LDFLAGS-Wl,-O1 -pie
PHP_SHA25660b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
PHP_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz
PHP_VERSION8.3.0alpha2
[#000] sha256:ffa4a466dbb8eebd7e7f25590a9df12390de9016abf82279c29c9a64aa76491a - 9.24% (3.19 MB)
[#001] sha256:95a82af153dde64aaecebbaa654ef25fe458cadc53b82b53ef2709b36ee12472 - 7.58% (2.62 MB)
[#002] sha256:513a439724cb0dce6489fcef92ec4c613854488cc971907f16b38f06ff6e8a14 - 0.0% (1.23 KB)
[#003] sha256:60c5f3fdb07b83b724766e77b9ffeaaa86c0112dc077280c28d8ab36d1b52955 - 0.0% (269 Bytes)
[#004] sha256:b00dd2ea2be034e752cd0eda4b58436b661fd0e0539c50b8643ace108f50215c - 34.01% (11.7 MB)
[#005] sha256:65202905193cfddddab6714fe7a6e8d6c30d5b820826314a94008ca03dc32304 - 0.0% (500 Bytes)
[#006] sha256:ab426cbe83e6a694deb791d4e052ddac6312064f03415162c92212f006885f06 - 49.11% (17 MB)
[#007] sha256:6397679fc066e0c4554ea8968015849cc58556dafa90a1bbd01fa1cf6646e266 - 0.01% (2.39 KB)
[#008] sha256:8ab97ac7169d6f7ebe9e84dca4ca14c3b2ca163cfbebd491492454b464c4a95e - 0.05% (18.3 KB)
/bin/sh -c #(nop) ADD file:694c636c0dd19fd01accbc189e4c1dc4d063952692c6e7eb26dce02a7adba833 in /
2023-06-15 00:39:49 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-15 02:20:16 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-06-15 02:20:19 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2023-06-15 02:20:20 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-06-15 02:20:20 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-06-15 02:20:21 UTC/bin/sh -c set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html
2023-06-15 02:20:22 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 02:20:22 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 02:20:22 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-06-15 02:20:23 UTC/bin/sh -c #(nop) ENV GPG_KEYS=1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
2023-06-26 21:58:08 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.3.0alpha2
2023-06-26 21:58:09 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz PHP_ASC_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
2023-06-26 21:58:10 UTC/bin/sh -c #(nop) ENV PHP_SHA256=60b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
2023-06-26 21:58:28 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .fetch-deps gnupg; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apk del --no-network .fetch-deps
2023-06-26 21:58:28 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2023-06-26 22:02:31 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS argon2-dev coreutils curl-dev gnu-libiconv-dev libsodium-dev libxml2-dev linux-headers oniguruma-dev openssl-dev readline-dev sqlite-dev ; rm -vf /usr/include/iconv.h; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv=/usr --with-openssl --with-readline --with-zlib --enable-phpdbg --enable-phpdbg-readline --with-pear $(test "$gnuArch" = 's390x-linux-musl' && echo '--without-pcre-jit') ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache $runDeps; apk del --no-network .build-deps; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version
2023-06-26 22:02:32 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2023-06-26 22:02:34 UTC/bin/sh -c docker-php-ext-enable sodium
2023-06-26 22:02:35 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2023-06-26 22:02:36 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2023-06-26 21:06:43 UTC
32.6 MB
1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PHPIZE_DEPSautoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
PHP_ASC_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
PHP_CFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_CPPFLAGS-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
PHP_INI_DIR/usr/local/etc/php
PHP_LDFLAGS-Wl,-O1 -pie
PHP_SHA25660b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
PHP_URLhttps://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz
PHP_VERSION8.3.0alpha2
[#000] sha256:998cc98447b44e5f0fe799dce691412796ba586ab22eb7c99aebf9d45f34833b - 9.4% (3.06 MB)
[#001] sha256:9863b5dcc3e5885fe5ff8335b86d4287dfd59b451fe22e94b79f83b396c3776d - 8.09% (2.64 MB)
[#002] sha256:2f159305449b6c309659dadfedb968259be79e6f5b9f552d97134f0a94490ae8 - 0.0% (1.23 KB)
[#003] sha256:f0e5f78cdbb2bcfe6b24c6cc002d51d1551a0fbabd06fa3baaee2be566d6d55f - 0.0% (268 Bytes)
[#004] sha256:97abdb284d1fbbb38c22802c47abc2f0d5201b5c437de0912d099335cc95511f - 36.01% (11.7 MB)
[#005] sha256:68fb93f9c8e2aeb26be1ba3fa6f966af0a3f28bfc8d815145c9ebd85134bd6e0 - 0.0% (500 Bytes)
[#006] sha256:185c6391ddd8324a9fc4dd85adc2f02ed4766045ecfa6ee31c1883c2d60fdfe1 - 46.44% (15.1 MB)
[#007] sha256:49ec20ec0e4701f695ea05fd17d41596326e952d59976557adbb03db3ab42391 - 0.01% (2.39 KB)
[#008] sha256:60f5d3566978d7eaafdb9f88fadd57ecf802d562a4991d23a398d226a16e0c7e - 0.05% (18.3 KB)
/bin/sh -c #(nop) ADD file:a59beca78118ebf4f86cc1685237dc3a29a519401a70668da520beaa3d29eb7a in /
2023-06-15 05:18:38 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-15 18:32:15 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-06-15 18:32:18 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2023-06-15 18:32:20 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-06-15 18:32:20 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-06-15 18:32:21 UTC/bin/sh -c set -eux; mkdir -p "$PHP_INI_DIR/conf.d"; [ ! -d /var/www/html ]; mkdir -p /var/www/html; chown www-data:www-data /var/www/html; chmod 1777 /var/www/html
2023-06-15 18:32:22 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 18:32:22 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-06-15 18:32:22 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-06-15 18:32:22 UTC/bin/sh -c #(nop) ENV GPG_KEYS=1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
2023-06-26 21:03:56 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.3.0alpha2
2023-06-26 21:03:56 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz PHP_ASC_URL=https://downloads.php.net/~eric/php-8.3.0alpha2.tar.xz.asc
2023-06-26 21:03:56 UTC/bin/sh -c #(nop) ENV PHP_SHA256=60b0b18220dcb018ac3a602875fd21f07c9a08887ee22d50ed0670fe1e0a4792
2023-06-26 21:04:00 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .fetch-deps gnupg; mkdir -p /usr/src; cd /usr/src; curl -fsSL -o php.tar.xz "$PHP_URL"; if [ -n "$PHP_SHA256" ]; then echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; fi; if [ -n "$PHP_ASC_URL" ]; then curl -fsSL -o php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; for key in $GPG_KEYS; do gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME"; fi; apk del --no-network .fetch-deps
2023-06-26 21:04:00 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2023-06-26 21:06:41 UTC/bin/sh -c set -eux; apk add --no-cache --virtual .build-deps $PHPIZE_DEPS argon2-dev coreutils curl-dev gnu-libiconv-dev libsodium-dev libxml2-dev linux-headers oniguruma-dev openssl-dev readline-dev sqlite-dev ; rm -vf /usr/include/iconv.h; export CFLAGS="$PHP_CFLAGS" CPPFLAGS="$PHP_CPPFLAGS" LDFLAGS="$PHP_LDFLAGS" ; docker-php-source extract; cd /usr/src/php; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --with-pic --enable-ftp --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv=/usr --with-openssl --with-readline --with-zlib --enable-phpdbg --enable-phpdbg-readline --with-pear $(test "$gnuArch" = 's390x-linux-musl' && echo '--without-pcre-jit') ; make -j "$(nproc)"; find -type f -name '*.a' -delete; make install; find /usr/local -type f -perm '/0111' -exec sh -euxc ' strip --strip-all "$@" || : ' -- '{}' + ; make clean; cp -v php.ini-* "$PHP_INI_DIR/"; cd /; docker-php-source delete; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache $runDeps; apk del --no-network .build-deps; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; php --version
2023-06-26 21:06:42 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2023-06-26 21:06:43 UTC/bin/sh -c docker-php-ext-enable sodium
2023-06-26 21:06:43 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2023-06-26 21:06:43 UTC/bin/sh -c #(nop) CMD ["php" "-a"]