Skip to content

Commit ba61cbb

Browse files
Install apcu from source
1 parent 93969d5 commit ba61cbb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

php-84/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,9 @@ RUN set -xe; \
487487

488488
# Install extensions
489489
# We can install extensions manually or using `pecl`
490-
RUN pecl install APCu
490+
RUN git clone https://github.com/krakjoe/apcu.git \
491+
&& cd apcu && git reset --hard 3299efc0987499d468693a3aa5c7e9d5548c4525 \
492+
&& phpize && ./configure && make && make install && cd ../ && rm -rf apcu
491493

492494

493495
# ---------------------------------------------------------------

0 commit comments

Comments
 (0)