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 480eef5 commit f67ec8aCopy full SHA for f67ec8a
docker/Dockerfile
@@ -21,12 +21,18 @@ RUN set -x && \
21
php${PHP_VERSION}-amqp \
22
php${PHP_VERSION}-xml \
23
php${PHP_VERSION}-mysql \
24
+ php${PHP_VERSION}-curl \
25
libgearman-dev \
26
php-pear \
27
make \
28
&& \
29
pecl channel-update pecl.php.net && \
- pecl install gearman
30
+ pecl install gearman && \
31
+ if [ ! -f /etc/php/${PHP_VERSION}/cli/conf.d/10-gearman.ini ]; then \
32
+ echo "extension=gearman.so" > /etc/php/${PHP_VERSION}/cli/conf.d/10-gearman.ini && \
33
+ echo "extension=gearman.so" > /etc/php/${PHP_VERSION}/fpm/conf.d/10-gearman.ini \
34
+ ; \
35
+ fi;
36
37
## librdkafka
38
RUN set -x && \
0 commit comments