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 \