From 126127c1e11a09a4d4653c0ca9551ffc8cf35ab3 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 9 Apr 2021 21:28:38 +0200 Subject: [PATCH] Fix armHF image to use ftuser on install too --- Dockerfile.armhf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.armhf b/Dockerfile.armhf index df1c4bc80..332b91b35 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -33,7 +33,8 @@ RUN cd /tmp && /tmp/install_ta-lib.sh && rm -r /tmp/*ta-lib* ENV LD_LIBRARY_PATH /usr/local/lib # Install dependencies -COPY requirements.txt /freqtrade/ +COPY --chown=ftuser:ftuser requirements.txt /freqtrade/ +USER ftuser RUN pip install --user --no-cache-dir numpy \ && pip install --user --no-cache-dir -r requirements.txt