16 lines
388 B
Docker
16 lines
388 B
Docker
FROM php:7.1-fpm
|
|
|
|
# MySQL
|
|
RUN docker-php-ext-install mysqli
|
|
|
|
RUN apt-get update
|
|
|
|
# GD
|
|
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev
|
|
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/
|
|
RUN docker-php-ext-install -j$(nproc) gd
|
|
|
|
# Mcrypt
|
|
RUN apt-get install -y libmcrypt-dev
|
|
RUN docker-php-ext-install -j$(nproc) mcrypt
|