From 5940d29d74def2bfd5659b166a7921593e518fc7 Mon Sep 17 00:00:00 2001 From: clutch70 <67942178+clutch70@users.noreply.github.com> Date: Tue, 7 Jun 2022 21:49:31 -0500 Subject: [PATCH] Add pymysql, freqtrade issue #6945 jfc its a continuation marker not a path --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 13960439b..ec4258294 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,8 +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 pymysql \ + && 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