From 38b306265327061647f0f598b2842802407a9889 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 15 Aug 2025 16:18:24 +0200 Subject: [PATCH] chore: fix armhf build --- docker/Dockerfile.armhf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.armhf b/docker/Dockerfile.armhf index 9b659ae7d..668bfc0b1 100644 --- a/docker/Dockerfile.armhf +++ b/docker/Dockerfile.armhf @@ -34,7 +34,7 @@ COPY build_helpers/* /tmp/ # Install dependencies COPY --chown=ftuser:ftuser requirements.txt /freqtrade/ USER ftuser -RUN pip install --user --no-cache-dir "numpy<3.0" \ +RUN pip install --user --prefer-binary --no-cache-dir "numpy<3.0" build \ && pip install --user --no-index --find-links /tmp/ pyarrow TA-Lib \ && pip install --user --no-cache-dir -r requirements.txt