From e186c7d57abebba2810f3f98f6aa2a31b4c9b27d Mon Sep 17 00:00:00 2001 From: clutch70 <67942178+clutch70@users.noreply.github.com> Date: Tue, 7 Jun 2022 21:43:19 -0500 Subject: [PATCH] Add pymysql, freqtrade issue #6945 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ec4258294..0ff936bdb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ 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 pymysql + && pip install --user --no-cache-dir pymysql \ # Copy dependencies to runtime-image FROM base as runtime-image