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