Fix mbstring configure: error: Package requirements (oniguruma) were not met

This commit is contained in:
François Jacquet 2020-08-20 13:29:51 +02:00
parent 0d36335b03
commit 11d69a9b0b
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ ENV PGHOST=db \
# Install git, Apache2 + PHP + PostgreSQL webserver, sendmail, wkhtmltopdf & others utilities.
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install postgresql-client wkhtmltopdf libpq-dev libpng-dev libxml2-dev libzip-dev sendmail -y;
apt-get install postgresql-client wkhtmltopdf libpq-dev libpng-dev libxml2-dev libzip-dev libonig-dev sendmail -y;
# Install PHP extensions.
RUN docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \