From 136678351765ef8921405277dabb6d075dedcdf2 Mon Sep 17 00:00:00 2001 From: misagh Date: Mon, 24 Sep 2018 14:28:16 +0200 Subject: [PATCH] Dockerfile: installing future before requirements.txt --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 2506665ab..0e90f0720 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,7 @@ WORKDIR /freqtrade # Install dependencies COPY requirements.txt /freqtrade/ RUN pip install numpy --no-cache-dir \ + && pip install future \ && pip install -r requirements.txt --no-cache-dir # Install and execute