From 7a63f8cc319d9543b9041caa5be9497e6fb01d4d Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 14 Mar 2021 13:25:08 +0100 Subject: [PATCH] Fix hdf5 support on raspberry --- Dockerfile.armhf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile.armhf b/Dockerfile.armhf index f938ec457..eecd9fdc0 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -41,7 +41,9 @@ COPY --from=python-deps /root/.local /root/.local # Install and execute COPY . /freqtrade/ -RUN pip install -e . --no-cache-dir \ +RUN apt-get install -y libhdf5-serial-dev \ + && apt-get clean \ + && pip install -e . --no-cache-dir \ && freqtrade install-ui ENTRYPOINT ["freqtrade"]