Add make
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Tyler 2020-12-27 03:51:18 -05:00
parent a545675f84
commit 428213d49f
1 changed files with 2 additions and 2 deletions

View File

@ -5,9 +5,9 @@ RUN apk add --no-cache libpng libpng-dev libjpeg-turbo-dev libwebp-dev zlib-dev
&& docker-php-ext-configure gd \
&& docker-php-ext-install gd
RUN apk add --no-cache autoconf gcc g++ \
RUN apk add --no-cache autoconf gcc g++ make \
&& pecl install redis-5.1.1 \
&& docker-php-ext-enable redis \
&& apk del autoconf gcc g++
&& apk del autoconf gcc g++ make
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer