install numpy before ta-lib to fix build errors

This commit is contained in:
Matthias
2018-07-29 14:01:50 +02:00
parent 42024134ec
commit ebfcc0fc13
3 changed files with 13 additions and 6 deletions

View File

@@ -15,7 +15,8 @@ WORKDIR /freqtrade
# Install dependencies
COPY requirements.txt /freqtrade/
RUN pip install -r requirements.txt
RUN pip install numpy \
&& pip install -r requirements.txt
# Install and execute
COPY . /freqtrade/