Sign inSign up
php logo

php:8.6.0beta3-cli-alpine3.23

Multi-platform
Also known as:
8.6-rc-alpine3.23
8.6-rc-cli-alpine3.23
8.6.0beta3-alpine3.23
Languages & frameworks
Index digest

sha256:973e28995527d2d1360d94c13b7479a8f0ca9f9b3f3bcdf899034c92ce723a24

OS/ARCH

Compressed size

40.85 MB

Last pushed

about 9 hours by doijanky

Type

Image

Vulnerabilities

0
6
10
5
1

Manifest digest

sha256:6ca8ee7423351fc581a2a9528007e55677942b332a457c31113d8538589c8b92

Layers (21)

alpine:7020587596de0d3a28d845d4426f417d2ff45923388a77db339174c9095872d6
0
0
1
0
0
php:8.6.0beta3-cli-alpine3.23
0
6
9
5
1

2

ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c

0 B


3

RUN /bin/sh -c apk add --no-cache ca-certificates curl openssl tar xz # buildkit

3.49 MB


4

RUN /bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data # buildkit

930 B


5

ENV PHP_INI_DIR=/usr/local/etc/php

0 B


6

RUN /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 # buildkit

215 B


7

ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64

0 B


8

ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64

0 B


9

ENV PHP_LDFLAGS=-Wl,-O1 -pie

0 B


10

ENV GPG_KEYS=D95C03BC702BE9515344AE3374E44BC9067701A5 016895DE9A475111D537A6E69134FF30BC5A99B5 5CFF17B64DC1C244F5D0EAC3E43535E2EB19010E

0 B


11

ENV PHP_VERSION=8.6.0beta3

0 B


12

ENV PHP_URL=https://downloads.php.net/~svpernova09/php-8.6.0beta3.tar.xz PHP_ASC_URL=https://downloads.php.net/~svpernova09/php-8.6.0beta3.tar.xz.asc

0 B


13

ENV PHP_SHA256=e8daf9546c4d4244dad961b5412734db57823c2e967df3fcfbb819a62d520ea6

0 B


14

RUN /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; 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"; apk del --no-network .fetch-deps # buildkit

14.93 MB


15

COPY docker-php-source /usr/local/bin/ # buildkit

488 B


16

RUN /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 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)"; case "$gnuArch" in 'i686-linux-'*) export CFLAGS="$CFLAGS -msse2 -mfpmath=sse" CPPFLAGS="$CPPFLAGS -msse2 -mfpmath=sse" ; ;; esac; test "$PHP_INI_DIR" != "${PHP_INI_DIR%/php}"; ./configure --build="$gnuArch" --sysconfdir="${PHP_INI_DIR%/php}" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-option-checking=fatal --with-mhash --enable-pic --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 ; 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; php --version # buildkit

20.55 MB


17

COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ # buildkit

2.45 KB


18

RUN /bin/sh -c docker-php-ext-enable sodium # buildkit

22.11 KB


19

ENTRYPOINT ["docker-php-entrypoint"]

0 B


20

CMD ["php" "-a"]

0 B