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 11b237f commit d8687a1Copy full SHA for d8687a1
Dockerfiles/php-fpm/Dockerfile
@@ -38,6 +38,24 @@ RUN set -xe; \
38
docker-php-ext-enable xdebug
39
40
41
+
42
43
+# Install needed php extensions: memcache
44
+RUN curl -fsSL 'https://github.com/websupport-sk/pecl-memcache/archive/NON_BLOCKING_IO_php7.zip' -o memcache.zip \
45
+ && unzip memcache.zip \
46
+ && rm memcache.zip \
47
+ && ( \
48
+ cd pecl-memcache-NON_BLOCKING_IO_php7 \
49
+ && phpize \
50
+ && ./configure --enable-memcache \
51
+ && make \
52
+ && make install \
53
+ ) \
54
+ && rm -r pecl-memcache-NON_BLOCKING_IO_php7 \
55
+ && docker-php-ext-enable memcache
56
57
58
59
# install zip extensions
60
# ps. next lines are here becase there is no auto build on docker
61
RUN apt-get install -y --no-install-recommends \
0 commit comments