From def7c7088774f842ef994a624fa5f9934a6a7d07 Mon Sep 17 00:00:00 2001 From: Kacper Date: Wed, 22 Jul 2026 16:33:08 +0200 Subject: [PATCH] Add pcntl/posix PHP extensions for Reverb signal handling The Reverb websocket server (artisan reverb:start) needs pcntl for SIGINT/SIGTERM/SIGTSTP signal handling on shutdown; the base php:apache image doesn't enable it by default. Co-Authored-By: Claude Sonnet 5 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ab12bd2..2cad6e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y \ unzip \ git \ libldap2-dev \ - && docker-php-ext-install curl mysqli pdo pdo_mysql ldap zip + && docker-php-ext-install curl mysqli pdo pdo_mysql ldap zip pcntl posix # Kopiowanie Composera z oficjalnego obrazu COPY --from=composer:latest /usr/bin/composer /usr/bin/composer