php/Dockerfile

12 lines
533 B
Docker
Raw Normal View History

2017-12-07 04:19:02 +00:00
# NAME leenooks/php
# VERSION 7.1-fpm-plus
FROM registry.leenooks.net/leenooks/php:7.1-fpm-mysql
RUN apt-get update \
&& apt-get install -y libbz2-dev libgmp-dev libpng-dev libjpeg-dev libfreetype6-dev libmagickwand-dev --no-install-recommends \
2017-12-07 04:19:02 +00:00
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/freetype2 --with-jpeg-dir=/usr/include/ \
&& docker-php-ext-install -j$(nproc) bz2 gettext sockets gmp gd pcntl exif \
2017-12-28 11:51:46 +00:00
&& pecl install imagick && docker-php-ext-enable imagick \
&& rm -rf /var/lib/apt/lists/* /tmp/*