2024-01-06 03:10:01 UTC
33.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/~sergey/php-8.2.15RC1.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_SHA256260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
PHP_URLhttps://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz
PHP_VERSION8.2.15RC1
[#000] sha256:9acd8b4c9d4385585f74dabb4bc6b3351888710ae37ec5dbd9ea950281b8f9bb - 9.14% (3.09 MB)
[#001] sha256:e35c853c51aa63c9f21d6c91fa6948b8160ed6a90764a48e7b1891c38e016590 - 7.94% (2.69 MB)
[#002] sha256:7e6af7fb9ea0ea850c653027fa7b1b18f1d4c405aade35df3c3ec2151bb8251f - 0.0% (1.23 KB)
[#003] sha256:9233674231d3f63e2099e1d4253bf67fd488ef3d4fcd72e3e741ffb7a41f385e - 0.0% (270 Bytes)
[#004] sha256:58d2cf0e80aee4d89aee108a6362a4e9450acea501b708af04b58f7b303f474d - 34.08% (11.5 MB)
[#005] sha256:b7f0e6a37e173c33ccb34deaa42e5f318446362c814ff080ba27f335a100e5b0 - 0.0% (497 Bytes)
[#006] sha256:858be8b4fe68d603efa535b5e673f6bb35feb1da6ba2413b85ba457b3684d410 - 48.77% (16.5 MB)
[#007] sha256:1deafbf2160d2a52d1a36fe0049673a270b2fa605b2b1fbeaaea734a517eb549 - 0.01% (2.39 KB)
[#008] sha256:75acfd91b60eb61832a2bbabad9e605af62258b55b9ce7c80b07fa94d46e8b6c - 0.05% (18.8 KB)
/bin/sh -c #(nop) ADD file:bd52540f209ba362654d795d7893669c819d35011a16f9f319301727a33b3bd9 in /
2023-12-08 01:38:25 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-12-12 20:00:29 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-12-12 20:00:31 UTC/bin/sh -c apk add --no-cache ca-certificates curl openssl tar xz
2023-12-12 20:00:32 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-12-12 20:00:32 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-12-12 20:00:32 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-12-12 20:00:32 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 20:00:33 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 20:00:33 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-12-12 21:33:49 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2024-01-06 03:03:17 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.15RC1
2024-01-06 03:03:17 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz.asc
2024-01-06 03:03:17 UTC/bin/sh -c #(nop) ENV PHP_SHA256=260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
2024-01-06 03:03:24 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
2024-01-06 03:03:24 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2024-01-06 03:09:59 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" PHP_BUILD_PROVIDER='https://github.com/docker-library/php' PHP_UNAME='Linux - Docker' ; 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-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
2024-01-06 03:10:00 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2024-01-06 03:10:01 UTC/bin/sh -c docker-php-ext-enable sodium
2024-01-06 03:10:01 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2024-01-06 03:10:01 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2024-01-06 02:48:02 UTC
33.5 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/~sergey/php-8.2.15RC1.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_SHA256260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
PHP_URLhttps://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz
PHP_VERSION8.2.15RC1
[#000] sha256:661ff4d9561e3fd050929ee5097067c34bafc523ee60f5294a37fd08056a73ca - 9.7% (3.25 MB)
[#001] sha256:fbc99979baa6760dc40a927f812328a1431e3870d0f166b035365166ef2cf8d4 - 7.84% (2.63 MB)
[#002] sha256:47536423e0797b82f7a737a4efeb29297c96a33e8662ddcd121d728a01eac477 - 0.0% (1.23 KB)
[#003] sha256:1be6d4fc569fcdbdb835c5ee3607367e6ba4779809c0fad97de75045144220f8 - 0.0% (269 Bytes)
[#004] sha256:354dadf00a4d1246231950c2104201d7fe24eeb6ebbd6e9f9b86faa9db933472 - 34.44% (11.5 MB)
[#005] sha256:6549dc3852446086e4704e60d61f2ee7f55efc2f20aa8525016f6b49a033cdf6 - 0.0% (498 Bytes)
[#006] sha256:75382529362cd651602956b7c24742a4c1dc46cc684b7607b395c15bbbd3804a - 47.96% (16.1 MB)
[#007] sha256:65829d6c3fbdfc8a63e23ca4a13543ff604fc2eb13807994c1a1f3b2f612afc6 - 0.01% (2.39 KB)
[#008] sha256:0b1423fd61f82a13888655ac5e912ff606edb24043e6f1eea6cb4a610637ccb2 - 0.05% (18.8 KB)
/bin/sh -c #(nop) ADD file:1f4eb46669b5b6275af19eb7471a6899a61c276aa7d925b8ae99310b14b75b92 in /
2023-12-08 01:20:49 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-12-12 20:39:52 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-12-12 20:39:54 UTC/bin/sh -c apk add --no-cache ca-certificates curl openssl tar xz
2023-12-12 20:39:54 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-12-12 20:39:54 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-12-12 20:39:55 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-12-12 20:39:55 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 20:39:55 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 20:39:55 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-12-12 21:36:46 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2024-01-06 02:44:06 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.15RC1
2024-01-06 02:44:06 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz.asc
2024-01-06 02:44:06 UTC/bin/sh -c #(nop) ENV PHP_SHA256=260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
2024-01-06 02:44:12 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
2024-01-06 02:44:12 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2024-01-06 02:48:00 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" PHP_BUILD_PROVIDER='https://github.com/docker-library/php' PHP_UNAME='Linux - Docker' ; 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-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
2024-01-06 02:48:00 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2024-01-06 02:48:02 UTC/bin/sh -c docker-php-ext-enable sodium
2024-01-06 02:48:02 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2024-01-06 02:48:02 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2024-01-06 05:22:28 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/~sergey/php-8.2.15RC1.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_SHA256260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
PHP_URLhttps://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz
PHP_VERSION8.2.15RC1
[#000] sha256:0803c38384d9fd0f9afaec8fd13d267547b660dcd46bb92a3d63c5d76e78b04c - 9.46% (3.02 MB)
[#001] sha256:4b6157a5053a6ba5646a1361153760014335e77813c8792b60d226dedefbb229 - 8.26% (2.63 MB)
[#002] sha256:2682a06d9f91bef66466bcb1b37715dc344282ac9f062ffff8405cf448d71f51 - 0.0% (1.23 KB)
[#003] sha256:982a61382f7fcec3d428935d516ac99bf603d105e72ebe0c2952b860f329675f - 0.0% (268 Bytes)
[#004] sha256:5a5f7d7f8568ca16e8d5cdbd22e7c95dfece1612ff5dab5120a53f2ec5953997 - 36.19% (11.5 MB)
[#005] sha256:9150c71a14b56f976b92793039a78e196b536b2a9f5123c6c6726b3037d56ad8 - 0.0% (496 Bytes)
[#006] sha256:74b58cd93d9e2f4e7596bbbb6f3a991977d48e3acba26da4500a6f19f4dc40f3 - 46.02% (14.7 MB)
[#007] sha256:1b78c7e05e922821e6b5743d36b9f647c5fe528d91840ad60d351f47491386b6 - 0.01% (2.39 KB)
[#008] sha256:ff29ec1bc1206373f4667d09fdadf363df821a2e179ce88582deca95e00e94e5 - 0.06% (18.7 KB)
/bin/sh -c #(nop) ADD file:d43ed267a41631ce0e5a4ef5aac821a75300a83f85ecb6259f5616852f89e989 in /
2023-12-08 01:49:15 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-12-12 20:01:48 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-12-12 20:01:50 UTC/bin/sh -c apk add --no-cache ca-certificates curl openssl tar xz
2023-12-12 20:01:51 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-12-12 20:01:51 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-12-12 20:01:52 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-12-12 20:01:52 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 20:01:52 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 20:01:52 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-12-12 20:49:57 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2024-01-06 05:19:48 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.15RC1
2024-01-06 05:19:48 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz.asc
2024-01-06 05:19:48 UTC/bin/sh -c #(nop) ENV PHP_SHA256=260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
2024-01-06 05:19:54 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
2024-01-06 05:19:55 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2024-01-06 05:22:26 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" PHP_BUILD_PROVIDER='https://github.com/docker-library/php' PHP_UNAME='Linux - Docker' ; 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-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
2024-01-06 05:22:27 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2024-01-06 05:22:28 UTC/bin/sh -c docker-php-ext-enable sodium
2024-01-06 05:22:28 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2024-01-06 05:22:28 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2024-01-06 03:44:02 UTC
30.6 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/~sergey/php-8.2.15RC1.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_SHA256260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
PHP_URLhttps://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz
PHP_VERSION8.2.15RC1
[#000] sha256:1086c24c41097f090ce847d192c11307e1715eeb563a2cf4f410b2a199ae1942 - 9.1% (2.78 MB)
[#001] sha256:00fcdc554dd7b708317247ba5731b0d76bc06dc68a48af57f662820d33c665cc - 8.14% (2.49 MB)
[#002] sha256:2e4717604343f2899832c4417228ef3cdb02080f72378a4152eb72083f09c96e - 0.0% (1.23 KB)
[#003] sha256:fe0a6a05c32e2329e654bc633b417da36b7c74ed6bf626231bf0e900f912838e - 0.0% (270 Bytes)
[#004] sha256:66ee170471c4865c135c37a5b7ca4333e17595671eb37fe237a61d53068743ff - 37.76% (11.5 MB)
[#005] sha256:7b3cf13c2f2e48f62d90db5a3ff156f46a286d34d6184d2514a92b9ffc4fcb23 - 0.0% (495 Bytes)
[#006] sha256:f321c61226bcf2e0e7ea5b138c21420016f0853d9afe693266a5fa9920790b39 - 44.93% (13.7 MB)
[#007] sha256:69c473e5a604a309471bb5247316bb0c99fb3475c3cc85d4120998dca2203189 - 0.01% (2.39 KB)
[#008] sha256:13a26aa82308a3b0d4e338760b6f4325a8ec0f1e7f3fbb252f194c158d3155ea - 0.06% (18.7 KB)
/bin/sh -c #(nop) ADD file:13b9291053208eec61cd7c97bac2fa154380ad8d10182567763eea3e10c5882f in /
2023-12-08 01:57:20 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-12-12 20:17:47 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-12-12 20:17:48 UTC/bin/sh -c apk add --no-cache ca-certificates curl openssl tar xz
2023-12-12 20:17:49 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-12-12 20:17:49 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-12-12 20:17:50 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-12-12 20:17:50 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 20:17:50 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 20:17:50 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-12-12 21:09:05 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2024-01-06 03:37:55 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.15RC1
2024-01-06 03:37:56 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz.asc
2024-01-06 03:37:56 UTC/bin/sh -c #(nop) ENV PHP_SHA256=260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
2024-01-06 03:38:04 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
2024-01-06 03:38:04 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2024-01-06 03:43:57 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" PHP_BUILD_PROVIDER='https://github.com/docker-library/php' PHP_UNAME='Linux - Docker' ; 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-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
2024-01-06 03:43:58 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2024-01-06 03:44:01 UTC/bin/sh -c docker-php-ext-enable sodium
2024-01-06 03:44:01 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2024-01-06 03:44:02 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2024-01-06 03:20:51 UTC
33.5 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/~sergey/php-8.2.15RC1.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_SHA256260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
PHP_URLhttps://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz
PHP_VERSION8.2.15RC1
[#000] sha256:c303524923177661067f7eb378c3dd5277088c2676ebd1cd78e68397bb80fdbf - 9.53% (3.19 MB)
[#001] sha256:95a19b0853c69aaf4e0a33f42601f1bddea728304bef39e2fc08f66f3d518576 - 8.0% (2.68 MB)
[#002] sha256:872ba87116831a71587816ab8564d1a2b7137e1163524eb7e5abf40966e6882c - 0.0% (1.23 KB)
[#003] sha256:a3a9508fcdd73dc8c678f841adc3269e9919da38f14917ddaa2162b636d4661c - 0.0% (270 Bytes)
[#004] sha256:96608521880eb32f88b37e907944b341eab99d9a71df4157e12ccb6fe7845bbb - 34.45% (11.5 MB)
[#005] sha256:c235b348adf17ae84f88698374bd4fbca8268593727e88bfcc87fc608af90d69 - 0.0% (497 Bytes)
[#006] sha256:59f40efe1c568691c9ebef299827bd4c9e89f95aef746458364c1efcaf2f1b73 - 47.96% (16.1 MB)
[#007] sha256:75525387d71f5194c92a14e8bda7590ff170c37c19e368d1e86043be62d1aa3a - 0.01% (2.39 KB)
[#008] sha256:31a5d40633c8edb6eb7c09e47508680a8f83f9bb00881029e0ea355e444fd093 - 0.05% (18.6 KB)
/bin/sh -c #(nop) ADD file:8182c73f869a899cf624a59c400acb8226776d15e4d3a0d240a94e65340540d0 in /
2023-12-08 01:39:30 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-12-12 20:09:52 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-12-12 20:09:53 UTC/bin/sh -c apk add --no-cache ca-certificates curl openssl tar xz
2023-12-12 20:09:54 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-12-12 20:09:54 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-12-12 20:09:54 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-12-12 20:09:54 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 20:09:54 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 20:09:54 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-12-12 21:09:51 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2024-01-06 03:17:05 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.15RC1
2024-01-06 03:17:05 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz.asc
2024-01-06 03:17:05 UTC/bin/sh -c #(nop) ENV PHP_SHA256=260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
2024-01-06 03:17:10 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
2024-01-06 03:17:10 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2024-01-06 03:20:49 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" PHP_BUILD_PROVIDER='https://github.com/docker-library/php' PHP_UNAME='Linux - Docker' ; 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-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
2024-01-06 03:20:50 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2024-01-06 03:20:51 UTC/bin/sh -c docker-php-ext-enable sodium
2024-01-06 03:20:51 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2024-01-06 03:20:51 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2024-01-06 01:47:04 UTC
34.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/~sergey/php-8.2.15RC1.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_SHA256260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
PHP_URLhttps://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz
PHP_VERSION8.2.15RC1
[#000] sha256:243ac51c334a47917a84be93e972ee6378987e9b3b917a5a8df29025e161c1f3 - 9.32% (3.2 MB)
[#001] sha256:e89935d2f947cbd3585545f82639d347027ef82fbbf413f8684101953ea74bd6 - 7.87% (2.71 MB)
[#002] sha256:b208bea042d5cdcbe6436f88d2f7ea51b03a91df91ae099118f57b644b87bdb2 - 0.0% (1.23 KB)
[#003] sha256:4dcb83a14858379fd485cb474c02417cd209b148b775365e9bae3ab90f5fe798 - 0.0% (269 Bytes)
[#004] sha256:5fcf72615ff4f5865f6ab3143d1fff7ffc29436978df07d5aee85b0c1e7dc47b - 33.58% (11.5 MB)
[#005] sha256:47d8f77e7ba39f7efc40b7cddcf759c6be26c25e07ab4e935bf5847658038bfd - 0.0% (499 Bytes)
[#006] sha256:b4cd29c4428a9ab69b1f978d9b1b9ab8f225074edab7fb63c9d351e65332801e - 49.17% (16.9 MB)
[#007] sha256:ffd9b74d30a3d6501e626071852404b920d38182cb47c20ea069162964b5c2c4 - 0.01% (2.39 KB)
[#008] sha256:a9fcde59401c6372a629d244225b18080b109cd08a426ee314b5ddb97c0923fa - 0.05% (18.7 KB)
/bin/sh -c #(nop) ADD file:052421189f8d269382daaaa8beb63c687e4d8ca908c421abdce53bcc627a40b4 in /
2023-12-08 01:22:51 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-12-12 20:31:16 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-12-12 20:31:18 UTC/bin/sh -c apk add --no-cache ca-certificates curl openssl tar xz
2023-12-12 20:31:19 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-12-12 20:31:19 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-12-12 20:31:20 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-12-12 20:31:21 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 20:31:22 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 20:31:22 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-12-12 21:17:44 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2024-01-06 01:44:15 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.15RC1
2024-01-06 01:44:15 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz.asc
2024-01-06 01:44:16 UTC/bin/sh -c #(nop) ENV PHP_SHA256=260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
2024-01-06 01:44:22 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
2024-01-06 01:44:22 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2024-01-06 01:47:00 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" PHP_BUILD_PROVIDER='https://github.com/docker-library/php' PHP_UNAME='Linux - Docker' ; 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-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
2024-01-06 01:47:01 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2024-01-06 01:47:03 UTC/bin/sh -c docker-php-ext-enable sodium
2024-01-06 01:47:03 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2024-01-06 01:47:04 UTC/bin/sh -c #(nop) CMD ["php" "-a"]
2024-01-06 01:53:04 UTC
33.3 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/~sergey/php-8.2.15RC1.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_SHA256260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
PHP_URLhttps://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz
PHP_VERSION8.2.15RC1
[#000] sha256:0fca3ee44ced87b7184bc23390283fdf10cfae0e844a25b785dd11c463815227 - 9.28% (3.09 MB)
[#001] sha256:2e0180a7268e169fa6dd82fc04f9270dbd4fe716cf09b03fc82f84618025bad4 - 8.41% (2.8 MB)
[#002] sha256:4ecaefbf268f4b1e4d9f16c5d67523f3b76e72db0c3fc7a2f3fb6fd7fbdec547 - 0.0% (1.23 KB)
[#003] sha256:f5f0d18e8f1067fcb105dea2ad180f140d138c6d99310025696d1aaa322017db - 0.0% (269 Bytes)
[#004] sha256:a690c335da457b6306885d4e35b85665c0f5a9de07fe6231bb4bc0eb0a4ad284 - 34.65% (11.5 MB)
[#005] sha256:4f201fbc1aedc07efe7801119905b0ecf1dffdaf0bc52616c5e478449ce82414 - 0.0% (499 Bytes)
[#006] sha256:62733f2f2060809fbbc585c50324305c8567d48d13eb9ffea7ae6357c3b004dc - 47.58% (15.8 MB)
[#007] sha256:6cbc065201478ede06520515665190f95bae387457e06300ccc7f2e8ad60144c - 0.01% (2.39 KB)
[#008] sha256:e7d1139f851cf7cd5daf8e358ee6b869db183d2c046aa8a38bc7aade0f22e1f1 - 0.05% (18.7 KB)
/bin/sh -c #(nop) ADD file:47e0982fc3ae485c06d46f3c0022afd39ed7ec95fe755c2391e6b0cfcae65dfc in /
2023-12-08 01:41:51 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-12-12 19:58:23 UTC/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c
2023-12-12 19:58:25 UTC/bin/sh -c apk add --no-cache ca-certificates curl openssl tar xz
2023-12-12 19:58:25 UTC/bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data
2023-12-12 19:58:25 UTC/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php
2023-12-12 19:58:26 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-12-12 19:58:26 UTC/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 19:58:26 UTC/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
2023-12-12 19:58:26 UTC/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -pie
2023-12-12 20:42:20 UTC/bin/sh -c #(nop) ENV GPG_KEYS=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC
2024-01-06 01:50:11 UTC/bin/sh -c #(nop) ENV PHP_VERSION=8.2.15RC1
2024-01-06 01:50:11 UTC/bin/sh -c #(nop) ENV PHP_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~sergey/php-8.2.15RC1.tar.xz.asc
2024-01-06 01:50:11 UTC/bin/sh -c #(nop) ENV PHP_SHA256=260656f4e8da65ed96a4bf62ced22cd74aff044bf75c0545e3ef3f0bbda6dde6
2024-01-06 01:50:14 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
2024-01-06 01:50:15 UTC/bin/sh -c #(nop) COPY file:ce57c04b70896f77cc11eb2766417d8a1240fcffe5bba92179ec78c458844110 in /usr/local/bin/
2024-01-06 01:53:01 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" PHP_BUILD_PROVIDER='https://github.com/docker-library/php' PHP_UNAME='Linux - Docker' ; 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-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
2024-01-06 01:53:02 UTC/bin/sh -c #(nop) COPY multi:6edd033b037aa2d7697fc3b9f82c2f162146c1920a0c6d25a165dc56783204db in /usr/local/bin/
2024-01-06 01:53:03 UTC/bin/sh -c docker-php-ext-enable sodium
2024-01-06 01:53:03 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
2024-01-06 01:53:04 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.