From ed40f150c6f4bcf1377776f94e3c234a6de2f72e Mon Sep 17 00:00:00 2001 From: Alexandre Date: Sat, 30 Oct 2021 18:06:20 +0200 Subject: [PATCH] test --- freqtrade/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/freqtrade/Dockerfile b/freqtrade/Dockerfile index 6f5fb11a8..fee5a9743 100644 --- a/freqtrade/Dockerfile +++ b/freqtrade/Dockerfile @@ -7,10 +7,12 @@ USER root COPY rootfs / RUN \ + apt-get update \ + && apt-get install 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 \