From bb5d5354eb3d5c08d3a6a9a21f1d799bb2e7a104 Mon Sep 17 00:00:00 2001 From: clutch70 <67942178+clutch70@users.noreply.github.com> Date: Tue, 7 Jun 2022 21:39:06 -0500 Subject: [PATCH] Add pymysql, freqtrade issue #6945 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5f7b52265..ec4258294 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,8 @@ ENV LD_LIBRARY_PATH /usr/local/lib COPY --chown=ftuser:ftuser requirements.txt requirements-hyperopt.txt /freqtrade/ USER ftuser RUN pip install --user --no-cache-dir numpy \ - && pip install --user --no-cache-dir -r requirements-hyperopt.txt + && pip install --user --no-cache-dir -r requirements-hyperopt.txt \ + && pip install --user --no-cache-dir pymysql # Copy dependencies to runtime-image FROM base as runtime-image