pla-version (latest-arm64)
Published 2025-03-02 11:42:52 +00:00 by deon
Installation
docker pull gitea.dege.au/deon/pla-version:latest-arm64
sha256:0d34231c0bc880a3404993b60dae874797a40b40c8c4cf97fa0a1698c383fdb4
About this package
The modern PHP app server
Image Layers
ADD alpine-minirootfs-3.21.3-aarch64.tar.gz / # buildkit |
CMD ["/bin/sh"] |
ENV PHPIZE_DEPS=autoconf dpkg-dev dpkg file g++ gcc libc-dev make pkgconf re2c |
RUN /bin/sh -c apk add --no-cache ca-certificates curl openssl tar xz # buildkit |
RUN /bin/sh -c set -eux; adduser -u 82 -D -S -G www-data www-data # buildkit |
ENV PHP_INI_DIR=/usr/local/etc/php |
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 |
ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 |
ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 |
ENV PHP_LDFLAGS=-Wl,-O1 -pie |
ENV GPG_KEYS=AFD8691FDAEDF03BDF6E460563F15A9B715376CA 9D7F99A0CB8F05C8A6958D6256A97AF7600A39A6 0616E93D95AF471243E26761770426E17EBBB3DD |
ENV PHP_VERSION=8.4.4 |
ENV PHP_URL=https://www.php.net/distributions/php-8.4.4.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.4.4.tar.xz.asc |
ENV PHP_SHA256=05a6c9a2cc894dd8be719ecab221b311886d5e0c02cb6fac648dd9b3459681ac |
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 |
COPY docker-php-source /usr/local/bin/ # buildkit |
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 |
COPY docker-php-ext-* docker-php-entrypoint /usr/local/bin/ # buildkit |
RUN /bin/sh -c docker-php-ext-enable sodium # buildkit |
ENTRYPOINT ["docker-php-entrypoint"] |
CMD ["php" "-a"] |
ARG TARGETARCH=arm64 |
WORKDIR /app |
RUN |1 TARGETARCH=arm64 /bin/sh -c apk add --no-cache ca-certificates libcap mailcap # buildkit |
RUN |1 TARGETARCH=arm64 /bin/sh -c set -eux; mkdir -p /app/public /config/caddy /data/caddy /etc/caddy; sed -i 's/php/frankenphp run/g' /usr/local/bin/docker-php-entrypoint; echo '<?php phpinfo();' > /app/public/index.php # buildkit |
COPY caddy/frankenphp/Caddyfile /etc/caddy/Caddyfile # buildkit |
RUN |1 TARGETARCH=arm64 /bin/sh -c curl -sSLf -o /usr/local/bin/install-php-extensions https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions && chmod +x /usr/local/bin/install-php-extensions # buildkit |
CMD ["--config" "/etc/caddy/Caddyfile" "--adapter" "caddyfile"] |
HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:2019/metrics || exit 1"] "0s" "0s" "0s" "0s" '\x00'} |
ENV XDG_CONFIG_HOME=/config |
ENV XDG_DATA_HOME=/data |
EXPOSE map[80/tcp:{}] |
EXPOSE map[443/tcp:{}] |
EXPOSE map[443/udp:{}] |
EXPOSE map[2019/tcp:{}] |
LABEL org.opencontainers.image.title=FrankenPHP |
LABEL org.opencontainers.image.description=The modern PHP app server |
LABEL org.opencontainers.image.url=https://frankenphp.dev |
LABEL org.opencontainers.image.source=https://github.com/dunglas/frankenphp |
LABEL org.opencontainers.image.licenses=MIT |
LABEL org.opencontainers.image.vendor=Kévin Dunglas |
ENV GODEBUG=cgocheck=0 |
COPY /usr/local/lib/libwatcher* /usr/local/lib/ # buildkit |
RUN |1 TARGETARCH=arm64 /bin/sh -c apk add --no-cache libstdc++ && ldconfig /usr/local/lib # buildkit |
COPY /usr/local/bin/frankenphp /usr/local/bin/frankenphp # buildkit |
RUN |1 TARGETARCH=arm64 /bin/sh -c setcap cap_net_bind_service=+ep /usr/local/bin/frankenphp && frankenphp version # buildkit |
RUN /bin/sh -c if [ -n ${HTTP_PROXY} ] ; then sed -i -e s'/https/http/' /etc/apk/repositories; fi # buildkit |
RUN /bin/sh -c apk add --no-cache bash msmtp memcached # buildkit |
ENV SITE_USER=www-data |
ENV PHP_DIR=/app |
RUN /bin/sh -c install-php-extensions opcache igbinary msgpack memcached zip bz2 zstd brotli gd intl && echo opcache.memory_consumption=512 >> /usr/local/etc/php/conf.d/docker-php-ext-opcache.ini && echo opcache.interned_strings_buffer=64 >> /usr/local/etc/php/conf.d/docker-php-ext-opcache.ini && echo opcache.max_accelerated_files=32531 >> /usr/local/etc/php/conf.d/docker-php-ext-opcache.ini && echo opcache.fast_shutdown=1 >> /usr/local/etc/php/conf.d/docker-php-ext-opcache.ini && echo opcache.enable_cli=1 >> /usr/local/etc/php/conf.d/docker-php-ext-opcache.ini && mkdir /tmp/opcache && chown ${SITE_USER}:0 /tmp/opcache && chmod 750 /tmp/opcache && echo opcache.file_cache=/tmp/opcache >> /usr/local/etc/php/conf.d/docker-php-ext-opcache.ini && echo opcache.validate_timestamps=0 >> /usr/local/etc/php/conf.d/docker-php-ext-opcache.ini # buildkit |
RUN /bin/sh -c cp /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini # buildkit |
RUN /bin/sh -c sed -i -e 's/^memory_limit = 128M/memory_limit = 256M/' /usr/local/etc/php/php.ini # buildkit |
RUN /bin/sh -c sed -i -e 's/^expose_php = On/expose_php = Off/' /usr/local/etc/php/php.ini # buildkit |
RUN /bin/sh -c sed -i -e 's#^;sendmail_path =#sendmail_path = "/usr/bin/msmtp -t"#' /usr/local/etc/php/php.ini # buildkit |
COPY wait-for-it /usr/local/bin/ # buildkit |
ENV COMPOSER_HOME=/var/cache/composer |
RUN /bin/sh -c curl -4 https://getcomposer.org/installer|php -- --install-dir=/usr/local/bin --filename=composer && chown ${SITE_USER}:0 ${COMPOSER_HOME} # buildkit |
COPY msmtprc /etc/ # buildkit |
COPY docker/init-docker /sbin/init-docker # buildkit |
RUN /bin/sh -c chmod 550 /sbin/init-docker && chown ${SITE_USER}:0 /sbin/init-docker && chown -R ${SITE_USER}:0 ${XDG_DATA_HOME} ${XDG_CONFIG_HOME} /run # buildkit |
VOLUME [/var/cache/composer] |
WORKDIR /app |
USER www-data |
ENV SERVER_NAME=:8080 |
EXPOSE map[8080/tcp:{}] |
ENTRYPOINT ["/sbin/init-docker"] |
CMD ["--config" "/etc/caddy/Caddyfile" "--adapter" "caddyfile"] |
USER root |
RUN /bin/sh -c apk add --no-cache postgresql-client libpq && install-php-extensions pdo_pgsql && rm -rf /tmp/opcache/* # buildkit |
USER www-data |
COPY . /app # buildkit |
USER root |
RUN /bin/sh -c mkdir -p ${COMPOSER_HOME} && ([ -r auth.json ] && mv auth.json ${COMPOSER_HOME}) || true && touch .composer.refresh && mv .env.example .env && FORCE_PERMS=1 BUILD=1 /sbin/init-docker && rm -rf ${COMPOSER_HOME}/* composer.lock /tmp/opcache/* # buildkit |
USER www-data |
Labels
Key | Value |
---|---|
org.opencontainers.image.created | 2025-02-15T04:02:19Z |
org.opencontainers.image.description | The modern PHP app server |
org.opencontainers.image.licenses | MIT |
org.opencontainers.image.revision | 4c92633396f7629503cbfc69dee418e28018623b |
org.opencontainers.image.source | https://github.com/dunglas/frankenphp |
org.opencontainers.image.title | FrankenPHP |
org.opencontainers.image.url | https://frankenphp.dev |
org.opencontainers.image.vendor | Kévin Dunglas |
org.opencontainers.image.version | v1.4.2 |
Details
2025-03-02 11:42:52 +00:00
Versions (3)
View all
Container
6
OCI / Docker
linux/arm64
MIT
104 MiB