Skip to content

Commit

Permalink
Update python base to 3.7.5 and install hyperopt dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Oct 20, 2019
1 parent 6e938b5 commit 8a31b4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
@@ -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 \
Expand All @@ -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/
Expand Down
2 changes: 1 addition & 1 deletion requirements-hyperopt.txt
@@ -1,5 +1,5 @@
# Include all requirements to run the bot.
# -r requirements.txt
-r requirements.txt

# Required for hyperopt
scipy==1.3.1
Expand Down

0 comments on commit 8a31b4c

Please sign in to comment.