1
0
Fork 0

Merge pull request #26 from m4sk1n/patch-1

Add pcntl extension to Dockerfile
This commit is contained in:
daniel 2018-05-27 11:58:24 -06:00 committed by GitHub
commit 7a0843aedd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ FROM php:7.2-fpm-alpine
RUN apk add --no-cache git imagemagick \
&& apk add --no-cache --virtual .build build-base autoconf imagemagick-dev libtool \
&& docker-php-ext-install pdo_mysql \
&& docker-php-ext-install pdo_mysql pcntl \
&& pecl install imagick \
&& docker-php-ext-enable imagick \
&& apk del --purge .build