Skip to content

Commit 4c901b1

Browse files
Install apcu from source
1 parent 8151bcc commit 4c901b1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

php-83/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -483,8 +483,9 @@ RUN set -xe; \
483483

484484

485485
# Install extensions
486-
# We can install extensions manually or using `pecl`
487-
RUN pecl install APCu
486+
RUN git clone https://github.com/krakjoe/apcu.git \
487+
&& cd apcu && git reset --hard 3299efc0987499d468693a3aa5c7e9d5548c4525 \
488+
&& phpize && ./configure && make && make install && cd ../ && rm -rf apcu
488489

489490

490491
# ---------------------------------------------------------------

0 commit comments

Comments
 (0)