Added supporting of the mcrypt extenstion

This commit is contained in:
zhikiri 2016-06-27 11:30:25 +03:00
parent e5e04e4e18
commit 62878e7c49
3 changed files with 12 additions and 0 deletions

View File

@ -11,9 +11,13 @@ RUN apt-get update && apt-get install -y \
curl \
libpng12-dev \
libfreetype6-dev \
libmcrypt-dev \
--no-install-recommends \
&& rm -r /var/lib/apt/lists/*
# install mcrypt library
RUN docker-php-ext-install mcrypt
# configure gd library
RUN docker-php-ext-configure gd \
--enable-gd-native-ttf \

View File

@ -11,9 +11,13 @@ RUN apt-get update && apt-get install -y \
curl \
libpng12-dev \
libfreetype6-dev \
libmcrypt-dev \
--no-install-recommends \
&& rm -r /var/lib/apt/lists/*
# install mcrypt library
RUN docker-php-ext-install mcrypt
# configure gd library
RUN docker-php-ext-configure gd \
--enable-gd-native-ttf \

View File

@ -11,9 +11,13 @@ RUN apt-get update && apt-get install -y \
curl \
libpng12-dev \
libfreetype6-dev \
libmcrypt-dev \
--no-install-recommends \
&& rm -r /var/lib/apt/lists/*
# install mcrypt library
RUN docker-php-ext-install mcrypt
# configure gd library
RUN docker-php-ext-configure gd \
--enable-gd-native-ttf \