php logo

php:8.3.18RC1-zts-alpine

Multi-platform
Languages & Frameworks
Index digest

sha256:15999e90ea401205bdde308ceeb6afeda65749fc62149a7b5290cd8fae5d6113

OS/ARCH

Compressed size

39.4 MB

Last pushed

9 days by doijanky

Type

Image

Vulnerabilities

0
2
0
0
0

Manifest digest

sha256:88e58f518d236f5e26e2119e06de625e306464b591c0b7244cc9a1abc44cd3f8

Layers (21)

alpine:b80622d555379480a64f47b3f854abc555d3b953fbef374c6511183b41e293bb
0
0
0
0
0
php:8.3.18RC1-zts-alpine
0
2
0
0
0

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.34 MB


4

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

932 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=1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA

0 B


11

ENV PHP_VERSION=8.3.18RC1

0 B


12

ENV PHP_URL=https://downloads.php.net/~eric/php-8.3.18RC1.tar.xz PHP_ASC_URL=https://downloads.php.net/~eric/php-8.3.18RC1.tar.xz.asc

0 B


13

ENV PHP_SHA256=35106196ffb5ce6c425530ef8b16804a1ba7f1055d917a41276a4f0920e10bc4

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; 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 # buildkit

12.58 MB


15

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

487 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 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 --enable-embed --enable-zts --disable-zend-signals ; 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 # buildkit

21.73 MB


17

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

2.44 KB


18

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

20.03 KB


19

ENTRYPOINT ["docker-php-entrypoint"]

0 B


20

CMD ["php" "-a"]

0 B


1–2 of 2