From d54af9d5745e3680d8a6463ffd9f314aa53eb2d1 Mon Sep 17 00:00:00 2001 From: Julius Kiekbusch Date: Sun, 22 Sep 2024 21:04:21 +0200 Subject: [PATCH] Use apt php8.3-swoole again (#731) --- runtimes/8.3/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/runtimes/8.3/Dockerfile b/runtimes/8.3/Dockerfile index cb2c7aa7..b2c346af 100644 --- a/runtimes/8.3/Dockerfile +++ b/runtimes/8.3/Dockerfile @@ -30,9 +30,7 @@ RUN apt-get update \ php8.3-intl php8.3-readline \ php8.3-ldap \ php8.3-msgpack php8.3-igbinary php8.3-redis \ - php8.3-memcached php8.3-pcov php8.3-imagick php8.3-xdebug \ - && pecl install swoole-5.1.2 \ - && echo "extension=swoole.so" > /etc/php/8.3/cli/conf.d/20-swoole.ini \ + php8.3-memcached php8.3-pcov php8.3-imagick php8.3-xdebug php8.3-swoole \ && curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \ && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \