From 4c0edd0461b694f1065f7541f359f3fd648ebf13 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 15 Dec 2020 08:02:53 +0100 Subject: [PATCH] Move dependencies to base image for RPI --- Dockerfile.armhf | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 822da00a5..b6f2e44e6 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -11,10 +11,13 @@ ENV PATH=/root/.local/bin:$PATH RUN mkdir /freqtrade WORKDIR /freqtrade +RUN apt-get update \ + && apt-get -y install libatlas3-base curl sqlite3 \ + && apt-get clean + # Install dependencies FROM base as python-deps -RUN apt-get update \ - && apt-get -y install curl build-essential libssl-dev libffi-dev libatlas3-base libgfortran5 sqlite3 \ +RUN apt-get -y install build-essential libssl-dev libffi-dev libgfortran5 \ && apt-get clean \ && pip install --upgrade pip \ && echo "[global]\nextra-index-url=https://www.piwheels.org/simple" > /etc/pip.conf