Merge pull request #165 from orette/mongodb-library-fix

Added pkg-config to the PHP extentions and Tools that are installed from APT
This commit is contained in:
Mahmoud Zalt 2016-07-21 05:35:04 +03:00 committed by GitHub
commit d6329c26b3

View File

@ -47,7 +47,8 @@ RUN apt-get update && apt-get install -y --force-yes \
git \ git \
curl \ curl \
vim \ vim \
nano nano \
pkg-config
# Clean up, to free some space # Clean up, to free some space
RUN apt-get clean RUN apt-get clean
@ -93,4 +94,4 @@ WORKDIR /var/www/laravel
ARG INSTALL_PRESTISSIMO=false ARG INSTALL_PRESTISSIMO=false
RUN if [ "$INSTALL_PRESTISSIMO" = true ] ; then \ RUN if [ "$INSTALL_PRESTISSIMO" = true ] ; then \
composer global require "hirak/prestissimo:^0.3"; \ composer global require "hirak/prestissimo:^0.3"; \
fi fi