I think this install mysql-client

This commit is contained in:
Timothy Sehn
2020-09-02 15:38:49 -07:00
parent 86a1c88e5f
commit 21ffd2a47a

View File

@@ -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