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 \