From b9985a5e8addaab9bd122685283e6a37d5c75fcd Mon Sep 17 00:00:00 2001 From: Mikhail Timofeev Date: Thu, 30 Jan 2020 13:30:47 +0300 Subject: [PATCH] add libmysqlclient-dev installation --- images/linux/scripts/installers/mysql.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/images/linux/scripts/installers/mysql.sh b/images/linux/scripts/installers/mysql.sh index 7750fd3d9..8de31b185 100644 --- a/images/linux/scripts/installers/mysql.sh +++ b/images/linux/scripts/installers/mysql.sh @@ -12,6 +12,9 @@ export ACCEPT_EULA=Y # Install MySQL Client apt-get install mysql-client -y +# InstallMySQL database development files +apt-get install libmysqlclient-dev + # Install MySQL Server MYSQL_ROOT_PASSWORD=root echo "mysql-server mysql-server/root_password password $MYSQL_ROOT_PASSWORD" | debconf-set-selections