Added php7.0-mysql installation to Dockerfile

This commit is contained in:
Nathan Kunicki 2017-11-27 21:45:46 -08:00 committed by fguillot
parent 60ae2db07f
commit 816e74d8ba
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ FROM ubuntu:16.04
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
apache2 libapache2-mod-php7.0 php7.0-pgsql php7.0-sqlite3 php7.0-xml php7.0-mcrypt \
apache2 libapache2-mod-php7.0 php7.0-pgsql php7.0-mysql php7.0-sqlite3 php7.0-xml php7.0-mcrypt \
php7.0-opcache php7.0-mcrypt php7.0-mbstring php7.0-json php7.0-curl && \
apt-get clean