Fixed some bugs

This commit is contained in:
Floris Westerman 2020-11-09 21:46:22 +01:00
parent 5414ec542d
commit 1c63287243
No known key found for this signature in database
GPG key ID: E2AED138B92702B0
4 changed files with 9 additions and 14 deletions

View file

@ -8,14 +8,15 @@ RUN apt-get install -y \
build-essential chrpath libssl-dev \
libxft-dev libfreetype6 libfreetype6-dev \
libpng-dev libjpeg62-turbo-dev \
libfontconfig1 libfontconfig1-dev libzip-dev
libfontconfig1 libfontconfig1-dev libzip-dev libldap2-dev
RUN pecl install mcrypt-1.0.2 && \
docker-php-ext-enable mcrypt
RUN docker-php-ext-configure intl && \
docker-php-ext-configure ldap && \
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && \
docker-php-ext-install opcache pdo_mysql zip intl gd
docker-php-ext-install opcache pdo_mysql zip intl gd ldap
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer