From 940bf2a367bd702c3dd6923480bf044b06b43e25 Mon Sep 17 00:00:00 2001 From: josh Date: Tue, 30 Jun 2026 21:57:03 +1000 Subject: [PATCH] Dockerfile Update to include pcntl --- dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 07c8de4..f54e96b 100644 --- a/dockerfile +++ b/dockerfile @@ -1,7 +1,7 @@ FROM php:8.4-fpm-alpine RUN apk add --no-cache nginx curl zip unzip git postgresql-dev nodejs npm dcron \ - && docker-php-ext-install pdo pdo_pgsql pgsql opcache + && docker-php-ext-install pdo pdo_pgsql pgsql opcache pcntl COPY --from=composer:latest /usr/bin/composer /usr/bin/composer