Merge pull request #2395 from freqtrade/reenable_docker_hyperopt

Update python base to 3.7.5 and install hyperopt dependencies in docker image
This commit is contained in:
hroff-1902 2019-10-20 20:17:27 +03:00 committed by GitHub
commit a52366c45d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
FROM python:3.7.4-slim-stretch
FROM python:3.7.5-slim-stretch
RUN apt-get update \
&& apt-get -y install curl build-essential libssl-dev \
@ -16,9 +16,9 @@ RUN cd /tmp && /tmp/install_ta-lib.sh && rm -r /tmp/*ta-lib*
ENV LD_LIBRARY_PATH /usr/local/lib
# Install dependencies
COPY requirements.txt requirements-common.txt /freqtrade/
COPY requirements.txt requirements-common.txt requirements-hyperopt.txt /freqtrade/
RUN pip install numpy --no-cache-dir \
&& pip install -r requirements.txt --no-cache-dir
&& pip install -r requirements-hyperopt.txt --no-cache-dir
# Install and execute
COPY . /freqtrade/

View File

@ -1,5 +1,5 @@
# Include all requirements to run the bot.
# -r requirements.txt
-r requirements.txt
# Required for hyperopt
scipy==1.3.1