Browse Source

Merge pull request #26 from m4sk1n/patch-1

Add pcntl extension to Dockerfile
daniel 7 years ago
parent
commit
7a0843aedd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

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