我将构建一个 Laravel 8 应用程序。PHP 语言级别为 PHP8。如何将 Swoole 集成到我的 Dockerfile 中?
其实我是这样尝试的:
RUN pecl channel-update https://pecl.php.net/channel.xml \
&& pecl install swoole
但是如果我构建 Dockerfile,它总是会遇到这个错误:
------
> [11/19] RUN pecl channel-update https://pecl.php.net/channel.xml && pecl install swoole:
#14 0.283 /bin/sh: 1: pecl: not found
------
failed to solve: rpc error: code = Unknown desc = executor failed running [/bin/sh -c pecl channel-update https://pecl.php.net/channel.xml && pecl install swoole]: exit code: 127
有人有想法吗?如果您需要有关它的更多信息,请告诉我。
问候,曼尼