1
0
Fork 0

Add pcntl extension to Dockerfile

This commit is contained in:
Marcin Mikołajczak 2018-05-27 13:00:55 +00:00 committed by GitHub
parent d8bbe98728
commit 47cd935091
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