From ba667365e3bea41ffeddd15f03f55ea0d53f0b29 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 25 Jan 2021 23:00:36 +0100 Subject: [PATCH] Correct --- joal/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/joal/Dockerfile b/joal/Dockerfile index ffc3ed0ae..1c913369b 100644 --- a/joal/Dockerfile +++ b/joal/Dockerfile @@ -24,8 +24,7 @@ RUN \ && ln -s /usr/lib/bashio/bashio /usr/bin/bashio \ \ #Install Joal - && download="https://github.com/anthonyraymond/joal/releases/download/${BUILD_VERSION}/joal.tar.gz" \ - && curl -J -L -o /tmp/joal.tar.gz $download \ + && curl -s -L -o /tmp/joal.tar.gz "https://github.com/anthonyraymond/joal/releases/download/2.1.24/joal.tar.gz" \ && mkdir -p /data/joal \ && tar zxvf /tmp/joal.tar.gz -C /data/joal \ && chown -R $(id -u):$(id -g) /data/joal \