1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-01-21 06:19:37 +00:00

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

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