Commit 1281490c authored by Mahmoud Zalt's avatar Mahmoud Zalt Committed by GitHub

Merge pull request #1168 from nunomazer/master

Add pecl before mongo install on Dockerfile-56 to stop mongodb breaking building
parents 615cb72e 3f798806
......@@ -189,6 +189,7 @@ ARG INSTALL_MONGO=false
ENV INSTALL_MONGO ${INSTALL_MONGO}
RUN if [ ${INSTALL_MONGO} = true ]; then \
# Install the mongodb extension
pecl channel-update pecl.php.net && \
pecl install mongodb && \
echo "extension=mongodb.so" >> /etc/php/5.6/mods-available/mongodb.ini && \
ln -s /etc/php/5.6/mods-available/mongodb.ini /etc/php/5.6/cli/conf.d/30-mongodb.ini \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment