From fa8a2599070beb0c3bf446bedf2a2ec89bdf1701 Mon Sep 17 00:00:00 2001 From: mpabi Date: Thu, 20 Jun 2024 08:40:10 +0000 Subject: [PATCH] Added mysql-connector-python --- src/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Dockerfile b/src/Dockerfile index fe46e82..ff337b3 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -56,7 +56,7 @@ ENV PATH="$HOME/.local/bin:$PATH" # Install SQLAlchemy and MySQL adapter in the pyenv environment RUN bash -i -c "source ~/.bashrc && pyenv activate p3.11 && pip install \ - sqlalchemy mysqlclient \ + sqlalchemy mysqlclient mysql-connector-python\ ipython numpy scipy matplotlib \ biopython"