Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ RUN \
libmaxminddb-dev \
zstd-dev \
brotli-dev \
lz4-dev
lz4-dev \
curl-dev

RUN docker-php-ext-install sockets

Expand All @@ -47,7 +48,7 @@ RUN \
git clone --depth 1 --branch $PHP_SWOOLE_VERSION https://github.com/swoole/swoole-src.git && \
cd swoole-src && \
phpize && \
./configure --enable-sockets --enable-http2 --enable-openssl && \
./configure --enable-sockets --enable-http2 --enable-openssl --enable-swoole-curl && \
make && make install && \
cd ..

Expand Down Expand Up @@ -179,6 +180,7 @@ RUN \
certbot \
docker-cli \
libgomp \
git \
&& docker-php-ext-install sockets opcache pdo_mysql pdo_pgsql \
&& apk del .deps \
&& rm -rf /var/cache/apk/*
Expand Down