提交 0bbd66e6 authored 作者: testing's avatar testing

fix

上级 428fd4b3
...@@ -77,6 +77,20 @@ RUN echo @testing http://dl-3.alpinelinux.org/alpine/edge/testing >> /etc/apk/re ...@@ -77,6 +77,20 @@ RUN echo @testing http://dl-3.alpinelinux.org/alpine/edge/testing >> /etc/apk/re
RUN wget https://github.com/swoole/swoole-src/archive/v${SWOOLE_VERSION}.tar.gz -O swoole.tar.gz \
&& mkdir -p swoole \
&& tar -xf swoole.tar.gz -C swoole --strip-components=1 \
&& rm swoole.tar.gz \
&& ( \
cd swoole \
&& phpize \
&& ./configure --enable-async-redis --enable-mysqlnd --enable-openssl --enable-http2 \
&& make -j$(nproc) \
&& make install \
) \
&& rm -r swoole \
&& docker-php-ext-enable swoole
RUN apk add --no-cache supervisor RUN apk add --no-cache supervisor
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论