We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43ce6c4 commit 66bca3fCopy full SHA for 66bca3f
Dockerfile
@@ -19,13 +19,10 @@ RUN docker-php-ext-install bcmath
19
RUN docker-php-ext-install pcntl
20
21
RUN apk --no-cache add pcre-dev ${PHPIZE_DEPS}
22
-# Install APCu
23
-RUN pecl install apcu
24
-RUN echo "extension=apcu.so" > /usr/local/etc/php/conf.d/apcu.ini
25
26
-# pcov
27
-RUN pecl install pcov
28
-RUN docker-php-ext-enable pcov
+RUN wget https://github.com/FriendsOfPHP/pickle/releases/download/v0.6.0/pickle.phar && mv pickle.phar /usr/local/bin/pickle && chmod +x /usr/local/bin/pickle
+RUN pickle install apcu
+RUN pickle install pcov
29
30
RUN curl --insecure https://getcomposer.org/composer.phar -o /usr/bin/composer && chmod +x /usr/bin/composer
31
RUN composer selfupdate
0 commit comments