From 88e57797902ccba023ddb9009537f31787920ab2 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 25 Jan 2021 12:31:48 +0100 Subject: [PATCH] Update Dockerfile --- joal/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/joal/Dockerfile b/joal/Dockerfile index 43a59c825..580f60243 100644 --- a/joal/Dockerfile +++ b/joal/Dockerfile @@ -7,8 +7,8 @@ RUN \ #Install bashio apt-get update \ && apt-get install -y --no-install-recommends \ + curl \ jq \ - tar \ && curl -J -L -o /tmp/bashio.tar.gz \ "https://github.com/hassio-addons/bashio/archive/v0.10.1.tar.gz" \ && mkdir /tmp/bashio \ @@ -20,11 +20,11 @@ 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/2.1.24/joal.tar.gz" \ - && mkdir -p /joal \ - && tar zxvf /tmp/joal.tar.gz -C /joal/ \ - && chown -R $(id -u):$(id -g) /joal \ +# && curl -J -L -o /tmp/joal.tar.gz \ +# "https://github.com/anthonyraymond/joal/releases/download/2.1.24/joal.tar.gz" \ +# && mkdir -p /joal \ +# && tar zxvf /tmp/joal.tar.gz -C /joal/ \ +# && chown -R $(id -u):$(id -g) /joal \ #Clean && rm -fr \ /tmp/* \