From adf6244eda8ab73f7b5f5a5f291bed26e6ef30fa Mon Sep 17 00:00:00 2001 From: Matthias Voppichler Date: Thu, 8 Mar 2018 19:25:42 +0100 Subject: [PATCH] Update dockerfile to python:3.6.4-slim-stretch --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a0dafe69a..918552526 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM python:3.6.2 +FROM python:3.6.4-slim-stretch # Install TA-lib -RUN apt-get update && apt-get -y install build-essential && apt-get clean +RUN apt-get update && apt-get -y install curl build-essential && apt-get clean RUN curl -L http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz | \ tar xzvf - && \ cd ta-lib && \