From 8d7747793a8ffa2eed643c46809b2785b83efc4a Mon Sep 17 00:00:00 2001 From: ivamp Date: Sat, 25 Jan 2025 02:04:38 +0800 Subject: [PATCH] add pecl uv --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ba93139..72bd4f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN echo '#!/bin/bash\nphp artisan "$@"' > /usr/bin/art && \ apt update && \ apt install -y --no-install-recommends libz-dev build-essential php8.4-cli php8.4-bcmath php8.4-bz2 php8.4-curl php8.4-redis php8.4-mongodb php8.4-pgsql php8.4-intl php8.4-mbstring php8.4-zip php8.4-gd php8.4-dom php8.4-mysql php8.4-dev php8.4-sqlite3 php-pear php8.4-memcached -RUN pecl channel-update pecl.php.net && MAKEFLAGS="-j $(nproc)" pecl install grpc && pecl install openswoole && strip --strip-debug /usr/lib/php/*/*.so && \ +RUN pecl channel-update pecl.php.net && MAKEFLAGS="-j $(nproc)" pecl install grpc && pecl install openswoole && pecl install uv && strip --strip-debug /usr/lib/php/*/*.so && \ apt autoremove --purge -y php8.4-dev php-pear build-essential libz-dev lsb-release && \ apt-get clean autoclean -y && \ apt-get autoremove -y && \