From 816e74d8ba48b04bd9afe7d66d1970a4595b16a5 Mon Sep 17 00:00:00 2001 From: Nathan Kunicki Date: Mon, 27 Nov 2017 21:45:46 -0800 Subject: [PATCH] Added php7.0-mysql installation to Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 48abb5e..08c7596 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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