crowbet/backend (sha256:97968801afae8d3d93a5c7ed42ef5f16c3625db413e633145bf1808ea3c5d626)

Published 2026-06-20 14:53:04 +00:00 by crowbet-admin

Installation

docker pull git.testcrow777.com/crowbet-admin/crowbet/backend@sha256:97968801afae8d3d93a5c7ed42ef5f16c3625db413e633145bf1808ea3c5d626
sha256:97968801afae8d3d93a5c7ed42ef5f16c3625db413e633145bf1808ea3c5d626

About this package

The modern PHP app server

Image layers

# debian.sh --arch 'amd64' out/ 'trixie' '@1781049600'
RUN /bin/sh -c set -eux; { echo 'Package: php*'; echo 'Pin: release *'; echo 'Pin-Priority: -1'; } > /etc/apt/preferences.d/no-debian-php # buildkit
ENV PHPIZE_DEPS=autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends $PHPIZE_DEPS ca-certificates curl xz-utils ; apt-get dist-clean # 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=1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
ENV PHP_VERSION=8.3.31
ENV PHP_URL=https://www.php.net/distributions/php-8.3.31.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.3.31.tar.xz.asc
ENV PHP_SHA256=66410cee07f4b2baeb0843140bb2a2b52ef930b5cf9b3d6e6d158b33aae8fa37
RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; apt-get dist-clean; 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"; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false # buildkit
COPY docker-php-source /usr/local/bin/ # buildkit
RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends libargon2-dev libcurl4-openssl-dev libonig-dev libreadline-dev libsodium-dev libsqlite3-dev libssl-dev libxml2-dev zlib1g-dev ; 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)"; debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; if [ ! -d /usr/include/curl ]; then ln -sT "/usr/include/$debMultiarch/curl" /usr/local/include/curl; fi; 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 --with-pic --enable-mbstring --enable-mysqlnd --with-password-argon2 --with-sodium=shared --with-pdo-sqlite=/usr --with-sqlite3=/usr --with-curl --with-iconv --with-openssl --with-readline --with-zlib --enable-phpdbg --enable-phpdbg-readline --with-pear --with-libdir="lib/$debMultiarch" --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; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | sort -u | xargs -rt dpkg-query --search | awk 'sub(":$", "", $1) { print $1 }' | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; apt-get dist-clean; 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 opcache # buildkit
RUN /bin/sh -c docker-php-ext-enable sodium # buildkit
ENTRYPOINT ["docker-php-entrypoint"]
CMD ["php" "-a"]
WORKDIR /app
RUN /bin/sh -c apt-get update && apt-get -y --no-install-recommends install mailcap libcap2-bin && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit
RUN /bin/sh -c set -eux; mkdir -p /app/public /config/caddy /data/caddy /etc/caddy /etc/frankenphp; 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 /bin/sh -c ln /etc/caddy/Caddyfile /etc/frankenphp/Caddyfile && 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/frankenphp/Caddyfile" "--adapter" "caddyfile"]
HEALTHCHECK {Test:[CMD-SHELL curl -f http://localhost:2019/metrics || exit 1] Interval:0s Timeout:0s StartPeriod:0s StartInterval:0s Retries:0}
ENV XDG_CONFIG_HOME=/config
ENV XDG_DATA_HOME=/data
EXPOSE [80/tcp]
EXPOSE [443/tcp]
EXPOSE [443/udp]
EXPOSE [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/php/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 /bin/sh -c apt-get install -y --no-install-recommends libstdc++6 && apt-get clean && ldconfig # buildkit
COPY /usr/local/bin/frankenphp /usr/local/bin/frankenphp # buildkit
RUN /bin/sh -c setcap cap_net_bind_service=+ep /usr/local/bin/frankenphp && frankenphp version && frankenphp build-info # buildkit
ARG PHPREDIS_VERSION=6.3.0
ARG PHPREDIS_LIBLZF_REF=fb25820c3c0aeafd127956ae6c115063b47e459a
RUN |2 PHPREDIS_VERSION=6.3.0 PHPREDIS_LIBLZF_REF=fb25820c3c0aeafd127956ae6c115063b47e459a /bin/sh -c install-php-extensions pdo_pgsql intl bcmath gd exif zip opcache pcntl sockets # buildkit
RUN |2 PHPREDIS_VERSION=6.3.0 PHPREDIS_LIBLZF_REF=fb25820c3c0aeafd127956ae6c115063b47e459a /bin/sh -c set -eux; mkdir -p /tmp/phpredis-src/liblzf; curl -fsSL "https://github.com/phpredis/phpredis/archive/refs/tags/${PHPREDIS_VERSION}.tar.gz" | tar -xz --strip-components=1 -C /tmp/phpredis-src; rm -rf /tmp/phpredis-src/liblzf; mkdir -p /tmp/phpredis-src/liblzf; curl -fsSL "https://github.com/nemequ/liblzf/archive/${PHPREDIS_LIBLZF_REF}.tar.gz" | tar -xz --strip-components=1 -C /tmp/phpredis-src/liblzf; install-php-extensions /tmp/phpredis-src; rm -rf /tmp/phpredis-src # buildkit
COPY docker/php/opcache.ini /usr/local/etc/php/conf.d/zz-opcache.ini # buildkit
COPY /usr/bin/composer /usr/bin/composer # buildkit
WORKDIR /app
COPY /app/vendor ./vendor # buildkit
COPY public/nuxt ./public/nuxt # buildkit
COPY composer.json composer.lock artisan ./ # buildkit
COPY app ./app # buildkit
COPY bootstrap ./bootstrap # buildkit
COPY config ./config # buildkit
COPY database ./database # buildkit
COPY resources ./resources # buildkit
COPY routes ./routes # buildkit
COPY storage ./storage # buildkit
COPY public/.htaccess public/index.php public/robots.txt ./public/ # buildkit
COPY public/css ./public/css # buildkit
COPY public/fonts ./public/fonts # buildkit
COPY public/images ./public/images # buildkit
COPY public/js ./public/js # buildkit
COPY public/plinko ./public/plinko # buildkit
RUN |2 PHPREDIS_VERSION=6.3.0 PHPREDIS_LIBLZF_REF=fb25820c3c0aeafd127956ae6c115063b47e459a /bin/sh -c composer dump-autoload --optimize --no-dev && php artisan package:discover --ansi # buildkit
RUN |2 PHPREDIS_VERSION=6.3.0 PHPREDIS_LIBLZF_REF=fb25820c3c0aeafd127956ae6c115063b47e459a /bin/sh -c useradd --uid 1000 --create-home --shell /bin/sh appuser && mkdir -p storage/logs storage/framework/cache/data storage/framework/sessions storage/framework/views /data/caddy /config/caddy && chown -R appuser:appuser storage bootstrap/cache /data /config && chown appuser:appuser public # buildkit
COPY --chmod=0755 docker/entrypoint.sh /usr/local/bin/entrypoint.sh # buildkit
USER appuser
ENV OCTANE_SERVER=frankenphp OCTANE_HOST=0.0.0.0 OCTANE_PORT=8000
EXPOSE [8000/tcp]
HEALTHCHECK {Test:[CMD-SHELL php -r '$s=@fsockopen("127.0.0.1",8000,$e,$m,2);if($s){fclose($s);exit(0);}exit(1);'] Interval:15s Timeout:5s StartPeriod:40s StartInterval:0s Retries:5}
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
CMD ["php" "artisan" "octane:start" "--server=frankenphp" "--host=0.0.0.0" "--port=8000"]

Labels

Key Value
dev.frankenphp.base.fingerprint 125a3a31a6e9e95c2c8af87a176261d6d9e9aa5456744d9492eccd4ab108cf7b
org.opencontainers.image.created 2026-06-12T05:31:36Z
org.opencontainers.image.description The modern PHP app server
org.opencontainers.image.licenses MIT
org.opencontainers.image.revision 3f562082c90275d7550c0417352f8cc5c3d0566a
org.opencontainers.image.source https://github.com/php/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.12.4
Details
Container
2026-06-20 14:53:04 +00:00
0
OCI / Docker
linux/amd64
MIT
441 MiB
Versions (45) View all