docker

laravel-octane (8.3)

Published 2025-12-31 15:32:57 +03:30 by msisoft in docker/laravel_octane

Installation

docker pull git.alshafagh.ir/docker/laravel-octane:8.3
sha256:d4bdf2ca0dee70947d891412b98ecc447516c6128110aea9d18fca18b6661c86

Image Layers

# debian.sh --arch 'amd64' out/ 'bullseye' '@1753056000'
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 ; rm -rf /var/lib/apt/lists/* # 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.24
ENV PHP_URL=https://www.php.net/distributions/php-8.3.24.tar.xz PHP_ASC_URL=https://www.php.net/distributions/php-8.3.24.tar.xz.asc
ENV PHP_SHA256=388ee5fd111097e97bae439bff46aec4ea27f816d3f0c2cb5490a41410d44251
RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends gnupg; rm -rf /var/lib/apt/lists/*; 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; ./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 --with-openssl --with-readline --with-zlib --enable-phpdbg --enable-phpdbg-readline --with-pear --with-libdir="lib/$debMultiarch" --enable-embed ; 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 -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; 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"]
RUN /bin/sh -c apt-get update; apt-get upgrade -yqq; pecl -q channel-update pecl.php.net; apt-get install -yqq --no-install-recommends --show-progress apt-utils gnupg gosu git curl wget libcurl4-openssl-dev ca-certificates supervisor libmemcached-dev libz-dev libbrotli-dev libpq-dev libjpeg-dev libpng-dev libfreetype6-dev libssl-dev libwebp-dev libmcrypt-dev libonig-dev libzip-dev zip unzip libargon2-1 libidn2-0 libpcre2-8-0 libpcre3 libxml2 libzstd1 procps zlib1g-dev libicu-dev g++ libc-ares-dev libnss3 libatk1.0-0 libcups2 libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 libxrandr2 libgbm1 libpango1.0.0 libcairo2 libasound2 libxfixes3 libatk-bridge2.0.0 cron libx11-xcb1 libxcomposite1 libatk1.0-0 libatk-bridge2.0-0 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgbm1 libgcc-s1 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 # buildkit
RUN /bin/sh -c docker-php-ext-configure zip # buildkit
RUN /bin/sh -c docker-php-ext-configure intl # buildkit
RUN /bin/sh -c docker-php-ext-configure gd --prefix=/usr --with-jpeg --with-webp --with-freetype # buildkit
RUN /bin/sh -c docker-php-ext-install pdo_mysql exif pcntl bcmath gd intl zip mbstring sockets # buildkit
RUN /bin/sh -c pecl install redis # buildkit
RUN /bin/sh -c pecl install -D 'enable-sockets="no" enable-openssl="yes" enable-http2="yes" enable-mysqlnd="yes" enable-hook-curl="yes" enable-cares="yes" with-postgres="yes"' openswoole # buildkit
RUN /bin/sh -c docker-php-ext-enable redis openswoole # buildkit
RUN /bin/sh -c pecl install mongodb && docker-php-ext-enable mongodb # buildkit
RUN /bin/sh -c curl -fsSL https://deb.nodesource.com/setup_20.x | bash - # buildkit
RUN /bin/sh -c apt-get install -y nodejs build-essential # buildkit
RUN /bin/sh -c npm install -g npm # buildkit
RUN /bin/sh -c apt-get install -y libxml2-dev # buildkit
RUN /bin/sh -c docker-php-ext-install soap # buildkit
RUN /bin/sh -c apt-get install -y libmagickwand-dev # buildkit
RUN /bin/sh -c pecl install imagick && docker-php-ext-enable imagick # buildkit
RUN /bin/sh -c groupadd --force -g 1000 octane && useradd -ms /bin/bash --no-log-init --no-user-group -g 1000 -u 1000 octane # buildkit
WORKDIR /app
RUN /bin/sh -c chown -R octane:octane . # buildkit
EXPOSE [80/tcp]
RUN /bin/sh -c echo "* * * * * octane cd /app && php artisan schedule:run >> /dev/null 2>&1" >> /etc/crontab # buildkit
COPY ./supervisord.conf /etc/supervisor/octane.conf # buildkit
COPY ./entrypoint.sh /etc/entrypoint.sh # buildkit
RUN /bin/sh -c npm install -g puppeteer # buildkit
USER octane
RUN /bin/sh -c npx puppeteer browsers install chrome-headless-shell # buildkit
USER root
RUN /bin/sh -c mkdir -p /tmp/puppeteer && chmod -R 777 /tmp/puppeteer # buildkit
RUN /bin/sh -c mkdir -p /root/.config/puppeteer && chmod -R 777 /root/.config/puppeteer # buildkit
ENTRYPOINT ["/etc/entrypoint.sh"]
HEALTHCHECK &{["CMD-SHELL" "php artisan octane:status || exit 1"] "30s" "5s" "1m0s" "0s" '\x03'}
Details
Container
2025-12-31 15:32:57 +03:30
49
OCI / Docker
linux/amd64
806 MiB
Versions (2) View all
8.3 2025-12-31
8.2 2024-09-16