Changes to make travis work, copied from spyridonas PR

This commit is contained in:
desaroger 2018-02-16 21:12:14 +01:00
parent c42e039945
commit 92dda4695c
2 changed files with 5 additions and 1 deletions

View File

@ -177,7 +177,7 @@ ARG INSTALL_GMP=false
RUN if [ ${INSTALL_GMP} = true ]; then \
# Install the GMP extension
apt-get update -yqq && \
apt-get install -y libgmp-dev && \
apt-get install -y libgmp3-dev && \
docker-php-ext-install gmp \
;fi

View File

@ -427,6 +427,10 @@ RUN echo "" >> ~/.bashrc && \
#####################################
# Laravel Envoy:
#####################################
USER root
apt-get update -yqq \
&& apt-get install -y php-curl
USER laradock
ARG INSTALL_LARAVEL_ENVOY=false