2022-09-01 21:20:23 UTC
32.4 MB
39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
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/~pierrick/php-8.2.0RC1.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_SHA25693bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
PHP_URLhttps://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz
PHP_VERSION8.2.0RC1
[#000] sha256:f8c6eeaa55b0f135b7fddb3d7745a98ca4d8f06d2898611234b9ef99e1183073 - 8.32% (2.7 MB)
[#001] sha256:b879b42bf572b7eefcc71161e2ff05a6b0400df15d6b9a3b2db7a7d26ed61c9e - 5.34% (1.73 MB)
[#002] sha256:4c0f429765613d7513a371aa3baa168942a4da42a2ad8ffa961a05a1c7b9973b - 0.0% (1.2 KB)
[#003] sha256:7116385646d31a85774afed68bf30439c5714d1455c2098df696e7ecdd059a6b - 0.0% (222 Bytes)
[#004] sha256:bc5514942297c21d5e3131388768e3b5b626d688450375150e4c0cdb68398f91 - 35.38% (11.5 MB)
[#005] sha256:2ed4050217cd2035709d48b857d93b5f8dfa8eca004cbff0dc70b24b165befb4 - 0.0% (498 Bytes)
[#006] sha256:f15f4ef33edee23cc100e78cd1c4cea8dda7598447c6e06ad5e000870b118c10 - 50.89% (16.5 MB)
[#007] sha256:6d58f5047d4a03004308f9605edc7d8e775a777801ef20bd3345e192c8ec030a - 0.01% (2.39 KB)
[#008] sha256:5fe7c7d7ca700a4639188e34b2bb3c7855ff20d437d8082b3d019b7a881c00ad - 0.06% (18.4 KB)
/bin/sh -c #(nop) ADD file:d51bb92de86c49ee5486066d12194be78c8b9a8452c44577e2dfeef1945a0138 in /
2022-08-09 17:38:47 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-09 19:09:23 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2022-08-09 19:09:25 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2022-08-09 19:09:26 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2022-08-09 19:09:27 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2022-08-09 19:09:28 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 777 /var/www/html
2022-08-09 19:09:29 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-09 19:09:30 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-09 19:09:31 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2022-08-09 19:09:32 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2022-09-01 21:16:45 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.0RC1
2022-09-01 21:16:46 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz.asc
2022-09-01 21:16:47 UTC/bin/sh -c #(nop) ENV PHP_SHA256=93bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
2022-09-01 21:16:52 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
2022-09-01 21:16:54 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2022-09-01 21:20:20 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
2022-09-01 21:20:21 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2022-09-01 21:20:21 UTC/bin/sh -c docker-php-ext-enable sodium
2022-09-01 21:20:22 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2022-09-01 21:20:23 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2022-09-01 21:03:00 UTC
31.9 MB
39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
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/~pierrick/php-8.2.0RC1.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_SHA25693bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
PHP_URLhttps://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz
PHP_VERSION8.2.0RC1
[#000] sha256:9621f1afde84053b2f9b6ff34fc7f7460712247c01cbab483c5fa7132cf782ca - 8.44% (2.69 MB)
[#001] sha256:797cd885d77976aede5fcea7a54982e7ce7ae729f160ec02fcb520966fb9f082 - 5.12% (1.63 MB)
[#002] sha256:28678576693ffd0509bd7c77d71c271fa2905fd08d7ffa84bc961d26857bb1e0 - 0.0% (1.23 KB)
[#003] sha256:410b9a6b1c40098ac9b2d8c619933060123f1451a0a4774d2fc8f96061da3907 - 0.0% (268 Bytes)
[#004] sha256:200a9341eb5a66a458caaa8dc8ae3d797619b3573101774d44eea2767d50170d - 35.94% (11.5 MB)
[#005] sha256:1852534929267cfd3f55ab48404a79f289e216364473e90dde6f5bfe8365af63 - 0.0% (498 Bytes)
[#006] sha256:2af4ffa5dd7b27988090f62fc10d2ecc6f9436fd41f7a08b2b0ad240ffaa2b35 - 50.43% (16.1 MB)
[#007] sha256:c5c42c79268baa2b81b7d6a1334edfd1eafd923a15eb9752198c6310b88246ec - 0.01% (2.39 KB)
[#008] sha256:3b7a93d55dcd954633817f9d74d386861ccc376ac4c6081ee5933a4b6e9b571e - 0.06% (18.5 KB)
/bin/sh -c #(nop) ADD file:f77e3f51f020890d22997e6c2ca98968b75b8bc8c463341a2010ff0655d4c88f in /
2022-08-09 17:20:01 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-09 21:32:56 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2022-08-09 21:32:57 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2022-08-09 21:32:57 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2022-08-09 21:32:58 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2022-08-09 21:32:58 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 777 /var/www/html
2022-08-09 21:32:58 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-09 21:32:58 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-09 21:32:58 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2022-08-09 21:32:59 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2022-09-01 20:59:11 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.0RC1
2022-09-01 20:59:11 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz.asc
2022-09-01 20:59:11 UTC/bin/sh -c #(nop) ENV PHP_SHA256=93bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
2022-09-01 20:59:16 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
2022-09-01 20:59:17 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2022-09-01 21:02:58 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
2022-09-01 21:02:59 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2022-09-01 21:03:00 UTC/bin/sh -c docker-php-ext-enable sodium
2022-09-01 21:03:00 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2022-09-01 21:03:00 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2022-09-01 22:04:27 UTC
30.4 MB
39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
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/~pierrick/php-8.2.0RC1.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_SHA25693bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
PHP_URLhttps://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz
PHP_VERSION8.2.0RC1
[#000] sha256:293b708aa6fb80967f27727d5c9c53ac9ba9cac376bed2ad02c17a5cca317b35 - 8.26% (2.51 MB)
[#001] sha256:9ea44f56e79ac635f0bc28f2e8ccb48e4329bf3a70a28dfc32a00235f7e87ce1 - 5.35% (1.62 MB)
[#002] sha256:2cb213a3741596d1489bfa19c597649b09ffbaff3be454947cb8487499987d2b - 0.0% (1.23 KB)
[#003] sha256:31a34313d0e689879aa079a162c614af2f26b6f6841bbf431f17c1afe6fcf1a1 - 0.0% (268 Bytes)
[#004] sha256:9850c7b063c49afa6e5f8e44fdaad9d1c387eab23463a0f469d5b609a515b00d - 37.77% (11.5 MB)
[#005] sha256:aac0316b2f8e4e86938d274e299dcfbb1e5d9f0c96c1022d02246439fd161e4e - 0.0% (498 Bytes)
[#006] sha256:ad2d6c4cc59895f799ffb8325dd54c4228e30b83cb53e60fe789ab58103baae3 - 48.55% (14.7 MB)
[#007] sha256:8aa9514c03fb3f4b722b04d42e1374437fb6f0295fa365e50071b36ad81c9fa3 - 0.01% (2.39 KB)
[#008] sha256:cfbe5975d5e7cf6e16b215c851b25fc0429d6fc64fb84285a69d9f340cea1f43 - 0.06% (18.3 KB)
/bin/sh -c #(nop) ADD file:89cb25f97e17bed5c56311280efe5cfa78422d8ffbe36232195d13f94d67417e in /
2022-08-09 17:49:29 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-10 11:58:57 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2022-08-10 11:58:59 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2022-08-10 11:58:59 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2022-08-10 11:59:00 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2022-08-10 11:59:00 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 777 /var/www/html
2022-08-10 11:59:00 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-10 11:59:01 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-10 11:59:01 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2022-08-10 11:59:01 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2022-09-01 21:46:08 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.0RC1
2022-09-01 21:46:08 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz.asc
2022-09-01 21:46:08 UTC/bin/sh -c #(nop) ENV PHP_SHA256=93bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
2022-09-01 21:46:15 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
2022-09-01 21:46:15 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2022-09-01 22:04:24 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
2022-09-01 22:04:25 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2022-09-01 22:04:27 UTC/bin/sh -c docker-php-ext-enable sodium
2022-09-01 22:04:27 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2022-09-01 22:04:27 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2022-09-02 00:12:27 UTC
29.1 MB
39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
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/~pierrick/php-8.2.0RC1.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_SHA25693bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
PHP_URLhttps://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz
PHP_VERSION8.2.0RC1
[#000] sha256:59775c20a906b1a49edcdc41a700a795998979d6ecf8f8d9cd7cbdf45e686d81 - 7.98% (2.32 MB)
[#001] sha256:5ba4d92c56600d1a8cf7dc9a595c294dcaa6b54c4f5374b60a252ae2f17b991c - 5.15% (1.5 MB)
[#002] sha256:d5da42e613e53f10981d38e44870af4f3fff20605befbc0957b2ba5bc1f59265 - 0.0% (1.23 KB)
[#003] sha256:ea190ec38af2c760f3563e46d384fc23a661c273e994595f6fd329e5e6e7585b - 0.0% (267 Bytes)
[#004] sha256:cdd6f57368139fc4d6cd34dea228bfdd32bf252ce3d1e02dbbd6cb2eaad2f119 - 39.43% (11.5 MB)
[#005] sha256:690dcd2c29ed566491a6a387c40d0d365feae5432b9c626eda6cb61da5010b5d - 0.0% (499 Bytes)
[#006] sha256:de5b67869c3633763f6ac33b92b5eb937499eeb9db3e55e497c954128683c581 - 47.36% (13.8 MB)
[#007] sha256:5d160ce8f17a36b9223f9f6c04b05f28ab3be8449440619b386b28b7c2400503 - 0.01% (2.39 KB)
[#008] sha256:8cbb5b1e851b9ae25a64f8bf6304fb56a9728be3243cc7a56f099a730826d697 - 0.06% (18.3 KB)
/bin/sh -c #(nop) ADD file:0bd18306f21937a9572e68c768f05f4a9d8341b40c2379a7bfcb857c77734a14 in /
2022-08-09 16:57:52 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-10 14:53:57 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2022-08-10 14:53:58 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2022-08-10 14:53:58 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2022-08-10 14:53:59 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2022-08-10 14:53:59 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 777 /var/www/html
2022-08-10 14:53:59 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-10 14:53:59 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-10 14:53:59 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2022-08-10 14:53:59 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2022-09-01 23:55:22 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.0RC1
2022-09-01 23:55:22 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz.asc
2022-09-01 23:55:22 UTC/bin/sh -c #(nop) ENV PHP_SHA256=93bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
2022-09-01 23:55:29 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
2022-09-01 23:55:29 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2022-09-02 00:12:25 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
2022-09-02 00:12:26 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2022-09-02 00:12:27 UTC/bin/sh -c docker-php-ext-enable sodium
2022-09-02 00:12:27 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2022-09-02 00:12:27 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2022-09-01 21:37:47 UTC
31.8 MB
39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
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/~pierrick/php-8.2.0RC1.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_SHA25693bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
PHP_URLhttps://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz
PHP_VERSION8.2.0RC1
[#000] sha256:47517142f6ba87eca6b7bdca1e0df160b74671c81e4b9605dad38c1862a43be3 - 8.15% (2.59 MB)
[#001] sha256:cf7a58d677a68ad3c648f0ba099ffbcb42c48ada3198266e10d1484b6693dbc2 - 5.14% (1.64 MB)
[#002] sha256:100c816700973fc580272b58f48f95cb3600c7998953bcead7fba47d2b00a7b4 - 0.0% (1.2 KB)
[#003] sha256:94771bf70d5316c0aeae680711bbba99dd5e5ff33b07f4d75b9ee80683b41eef - 0.0% (221 Bytes)
[#004] sha256:2cea0a3353bac63441c22c6b9ed1041a476ed56c97cf4d4aa3c2c926340d98ac - 36.05% (11.5 MB)
[#005] sha256:def94313071a8a6cef4206498237e4eacde510c1e8e6cd92c0d5047f5590f92c - 0.0% (501 Bytes)
[#006] sha256:6507697b299bbb4ba3878c57f0c33a5ec8ae113732d3feecdb891769412753de - 50.6% (16.1 MB)
[#007] sha256:2c5214f490f62ec1342da2a052876eb2a68e24dbf56c4519407adf49310684b8 - 0.01% (2.39 KB)
[#008] sha256:c9b91b3befe6060e86264acacd9466f3cf3a07d29a1262ad4c3b43cf989b913e - 0.06% (18.2 KB)
/bin/sh -c #(nop) ADD file:4b51a9d40f20d2beb29d0759b161d2b9403493453beb509de4e86a5d98513f16 in /
2022-08-09 17:39:51 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-10 00:22:25 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2022-08-10 00:22:27 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2022-08-10 00:22:28 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2022-08-10 00:22:29 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2022-08-10 00:22:30 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 777 /var/www/html
2022-08-10 00:22:31 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-10 00:22:32 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-10 00:22:33 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2022-08-10 00:22:34 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2022-09-01 21:32:11 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.0RC1
2022-09-01 21:32:12 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz.asc
2022-09-01 21:32:13 UTC/bin/sh -c #(nop) ENV PHP_SHA256=93bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
2022-09-01 21:32:18 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
2022-09-01 21:32:20 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2022-09-01 21:37:43 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
2022-09-01 21:37:45 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2022-09-01 21:37:46 UTC/bin/sh -c docker-php-ext-enable sodium
2022-09-01 21:37:46 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2022-09-01 21:37:47 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2022-09-01 20:55:34 UTC
32.7 MB
39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
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/~pierrick/php-8.2.0RC1.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_SHA25693bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
PHP_URLhttps://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz
PHP_VERSION8.2.0RC1
[#000] sha256:deb7065b3304c3a9834f31b8a53e8d6089060e9c6522668abd22f1f4d9f52ca7 - 8.19% (2.68 MB)
[#001] sha256:d51d49a1268b677011b409f2df6d403755672a64b2476335bda8590d5132b1a1 - 5.13% (1.68 MB)
[#002] sha256:168ee424c0d63cd625d432ed1b59a6f2b5849627e702196a992e40a95b2e0b67 - 0.0% (1.23 KB)
[#003] sha256:860bf2a5e9500032fb3e4ace19c4dbe49e838df439fe8172edac8164e82c15a3 - 0.0% (268 Bytes)
[#004] sha256:ea181ed57f7ec32ca86cd6227f0024dada625c94c2c8278be352a955be4f55aa - 35.03% (11.5 MB)
[#005] sha256:5748131b7f0e98d6af0ba76a5b45c36aed412f26384ac6a9123382d879622e99 - 0.0% (501 Bytes)
[#006] sha256:8586e377c628d01e0a6feff6c6f1a06676c118c387af0fdafed13ca66cd320a5 - 51.58% (16.9 MB)
[#007] sha256:8d2440e4307956b7eb0548b1e25105ff559ab4ed5243a1ee3caed932dd0a63ea - 0.01% (2.39 KB)
[#008] sha256:2c876a6057d2732c3f9373812db7eb091e57f553901bd3fb222a7ec334b7a398 - 0.05% (18.3 KB)
/bin/sh -c #(nop) ADD file:be31abb0aba89ed5ff9200736a1c46091abc3845d0e332efd5e5c874ef2c99d1 in /
2022-08-09 17:17:21 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-09 19:54:31 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2022-08-09 19:54:34 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2022-08-09 19:54:35 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2022-08-09 19:54:35 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2022-08-09 19:54:37 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 777 /var/www/html
2022-08-09 19:54:37 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-09 19:54:37 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-09 19:54:37 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2022-08-09 19:54:38 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2022-09-01 20:50:22 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.0RC1
2022-09-01 20:50:23 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz.asc
2022-09-01 20:50:23 UTC/bin/sh -c #(nop) ENV PHP_SHA256=93bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
2022-09-01 20:50:35 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
2022-09-01 20:50:36 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2022-09-01 20:55:30 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
2022-09-01 20:55:32 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2022-09-01 20:55:33 UTC/bin/sh -c docker-php-ext-enable sodium
2022-09-01 20:55:34 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2022-09-01 20:55:34 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2022-09-01 21:10:21 UTC
30.8 MB
39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
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/~pierrick/php-8.2.0RC1.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_SHA25693bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
PHP_URLhttps://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz
PHP_VERSION8.2.0RC1
[#000] sha256:cdf710f5b7ee39c5124c50c753228dc9b8b1c1c0a1a38f1413487548565445c3 - 8.08% (2.49 MB)
[#001] sha256:23435d6f332bdec76345d9b8c7b25366dab57121713621f34ea44a6a19bbb3eb - 5.5% (1.69 MB)
[#002] sha256:1e46eecb980e2a5d45c58328c006bb9455521558389033fd9733e22901035459 - 0.0% (1.23 KB)
[#003] sha256:8fefa7d36d57256207376324466e3201608351511c4675fa18f32bbebeaa1600 - 0.0% (268 Bytes)
[#004] sha256:04fd8b4059e5c825c8edeca79e977bf333b0cd53f90ab00f06ef12639e68ec21 - 37.28% (11.5 MB)
[#005] sha256:6b11ad674c9935f8c62b8aa39251a6b4d2fcf58f3ec7fb17fe4435f582b95aba - 0.0% (498 Bytes)
[#006] sha256:821c8fd9720e4daeb2d7c11037f198f44fa455afffaddffc6027f52b023e94c6 - 49.07% (15.1 MB)
[#007] sha256:1a41a7c29a707d22c87d40b91e65b0c942d020c298b4c05ffb9f6729ded10727 - 0.01% (2.39 KB)
[#008] sha256:f7e06963da8f9908df98fdd7b6cb14dd020fc3766116004052e5a8b961a25030 - 0.06% (18.3 KB)
/bin/sh -c #(nop) ADD file:7489fa84133e97e4f40b13dd5159989b3594c9627d9147bfc4e33134944cc368 in /
2022-08-09 17:41:54 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-09 23:32:27 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2022-08-09 23:32:29 UTC/bin/sh -c apk add --no-cache ca-certificates curl tar xz openssl
2022-08-09 23:32:31 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2022-08-09 23:32:31 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2022-08-09 23:32:33 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 777 /var/www/html
2022-08-09 23:32:33 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-09 23:32:34 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2022-08-09 23:32:34 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2022-08-09 23:32:35 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2022-09-01 21:05:32 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.0RC1
2022-09-01 21:05:32 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~pierrick/php-8.2.0RC1.tar.xz.asc
2022-09-01 21:05:32 UTC/bin/sh -c #(nop) ENV PHP_SHA256=93bb3a0b377167e18813e9c829d8daf1611161d788a27c5057bd23c9846ff6e8
2022-09-01 21:05:37 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
2022-09-01 21:05:38 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2022-09-01 21:10:12 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
2022-09-01 21:10:17 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2022-09-01 21:10:20 UTC/bin/sh -c docker-php-ext-enable sodium
2022-09-01 21:10:21 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2022-09-01 21:10:21 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
Please be careful as this will not just delete the reference but also the actual content!
For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.