We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 27f2ffd + b74c54f commit f64360aCopy full SHA for f64360a
1 file changed
php-worker/Dockerfile
@@ -101,7 +101,11 @@ RUN if [ ${INSTALL_AMQP} = true ]; then \
101
ARG INSTALL_GEARMAN=false
102
103
RUN if [ ${INSTALL_GEARMAN} = true ]; then \
104
- docker-php-ext-install gearman \
+ sed -i "\$ahttp://dl-cdn.alpinelinux.org/alpine/edge/main" /etc/apk/repositories && \
105
+ sed -i "\$ahttp://dl-cdn.alpinelinux.org/alpine/edge/community" /etc/apk/repositories && \
106
+ sed -i "\$ahttp://dl-cdn.alpinelinux.org/alpine/edge/testing" /etc/apk/repositories && \
107
+ apk --update add php7-gearman && \
108
+ sh -c 'echo "extension=/usr/lib/php7/modules/gearman.so" > /usr/local/etc/php/conf.d/gearman.ini' \
109
;fi
110
111
# Install Cassandra drivers:
0 commit comments