Merge pull request #1605 from freqtrade/fix/1604

Add libssl-dev to fix #1604
This commit is contained in:
Misagh 2019-03-03 12:57:16 +01:00 committed by GitHub
commit 2eb2ace539
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
FROM python:3.7.2-slim-stretch FROM python:3.7.2-slim-stretch
RUN apt-get update \ RUN apt-get update \
&& apt-get -y install curl build-essential \ && apt-get -y install curl build-essential libssl-dev \
&& apt-get clean \ && apt-get clean \
&& pip install --upgrade pip && pip install --upgrade pip