Browse Source

Add pcntl extension to Dockerfile

Marcin Mikołajczak 7 years ago
parent
commit
47cd935091
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 \
     && 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