From 21ffd2a47aa403d0a2b2bdfffe038261008b8ae7 Mon Sep 17 00:00:00 2001 From: Timothy Sehn Date: Wed, 2 Sep 2020 15:38:49 -0700 Subject: [PATCH] I think this install mysql-client --- MySQLDockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MySQLDockerfile b/MySQLDockerfile index 77abce6cf4..a404838409 100644 --- a/MySQLDockerfile +++ b/MySQLDockerfile @@ -26,6 +26,9 @@ RUN apt-get -y install python3-pip # install curl RUN apt-get -y install curl +# install mysql-client and associated C libraries +RUN apt-get -y install mysql-client + # install mysql connector and pymsql RUN pip3 install mysql-connector-python RUN pip3 install PyMySQL