From 954d00d00cbc247eb6f8ab731dd838a4a06bc4db Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 13 Nov 2021 16:38:26 +0100 Subject: [PATCH] Update Dockerfile --- freqtrade/Dockerfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/freqtrade/Dockerfile b/freqtrade/Dockerfile index 49733f438..ad6d0fcd8 100644 --- a/freqtrade/Dockerfile +++ b/freqtrade/Dockerfile @@ -7,10 +7,18 @@ USER root COPY rootfs / RUN \ + ################ + # Install apps # + ################ + apt-get update \ + && apt-get install -y --no-install-recommends \ + jq \ + git \ + \ ################### # Install bashio # ################## - mkdir -p /tmp/bashio \ + && mkdir -p /tmp/bashio \ && curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz" \ | tar -xzf - --strip 1 -C /tmp/bashio \ && mv /tmp/bashio/lib /usr/lib/bashio \