From 4ad658c2d58790f0de36d5bf8d79cb764a3fd225 Mon Sep 17 00:00:00 2001 From: David Gardner Date: Wed, 2 Oct 2024 12:08:57 -0700 Subject: [PATCH] Remove unused pymysql dependency --- examples/digital_fingerprinting/production/.env.sample | 6 ------ .../digital_fingerprinting/production/mlflow/Dockerfile | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/examples/digital_fingerprinting/production/.env.sample b/examples/digital_fingerprinting/production/.env.sample index 3fee3685cc..01d7686c65 100644 --- a/examples/digital_fingerprinting/production/.env.sample +++ b/examples/digital_fingerprinting/production/.env.sample @@ -1,10 +1,4 @@ # NOTE: This file should be copied to `.env` in the same folder and updated for each user -MYSQL_DATABASE="db" -MYSQL_USER="mlflow" -MYSQL_PASSWORD="good_password" -MYSQL_ROOT_PASSWORD="even_better_password" -MYSQL_ROOT_HOST="172.*.*.*" -MYSQL_LOG_CONSOLE=1 # Update these with your own credentials UID=$(id -u) GID=$(id -g) UID=1000 diff --git a/examples/digital_fingerprinting/production/mlflow/Dockerfile b/examples/digital_fingerprinting/production/mlflow/Dockerfile index 7398ee0c0c..284f46f28b 100644 --- a/examples/digital_fingerprinting/production/mlflow/Dockerfile +++ b/examples/digital_fingerprinting/production/mlflow/Dockerfile @@ -24,7 +24,7 @@ RUN apt update && \ rm -rf /var/cache/apt/* /var/lib/apt/lists/* # Install python packages -RUN pip install "mlflow >=2.10.0,<3" boto3 pymysql pyyaml +RUN pip install "mlflow >=2.10.0,<3" boto3 pyyaml # We run on port 5000 EXPOSE 5000