From cabccf0858d3978ed7ab543e2aeae54b58a23d87 Mon Sep 17 00:00:00 2001 From: jekkos-t520 Date: Tue, 29 Nov 2016 16:57:48 +0100 Subject: [PATCH] Add mcrypt to Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9b8228998..acac9fe93 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,10 +4,10 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ php5-apcu \ libicu-dev \ libgd-dev \ - sendmail + libmcrypt-dev RUN a2enmod rewrite -RUN docker-php-ext-install mysql mysqli bcmath intl gd sockets mbstring +RUN docker-php-ext-install mysql mysqli bcmath intl gd sockets mbstring mcrypt RUN echo "date.timezone = \"\${PHP_TIMEZONE}\"" > /usr/local/etc/php/conf.d/timezone.ini RUN echo -e “$(hostname -i)\t$(hostname) $(hostname).localhost” >> /etc/hosts