Update: 2026-07-21 16:59:10

This commit is contained in:
Hamza-Ayed
2026-07-21 16:59:10 +03:00
parent 13d10d13c7
commit b89191c018
11 changed files with 570 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# صورة السوكيتات الدائمة (Workerman) — driver_socket و passenger_socket
# ext-event ضرورية فوق ~1024 اتصال متزامن (Workerman يلتقطها تلقائياً إن وُجدت)
ARG PHP_VERSION=8.2
FROM php:${PHP_VERSION}-cli
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
RUN chmod +x /usr/local/bin/install-php-extensions && \
install-php-extensions pcntl posix sockets event redis @composer
WORKDIR /app