From 53c056d972553fceb3b14da914e71dd9fb5369d8 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 25 Jan 2021 11:39:49 +0100 Subject: [PATCH] Update Dockerfile --- joal/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/joal/Dockerfile b/joal/Dockerfile index 7f5dcb50b..cd68ff055 100644 --- a/joal/Dockerfile +++ b/joal/Dockerfile @@ -16,14 +16,14 @@ RUN \ --strip 1 -C /tmp/bashio \ \ && mv /tmp/bashio/lib /usr/lib/bashio \ - && ln -s /usr/lib/bashio/bashio /usr/bin/bashio + && ln -s /usr/lib/bashio/bashio /usr/bin/bashio \ \ #Install Joal && mkdir -p /joal \ && curl -L -s \ "https://github.com/anthonyraymond/joal/releases/download/${BUILD_VERSION}/joal.tar.gz" \ | tar zxvf - -C /joal/ \ - && chown -R $(id -u):$(id -g) /joal + && chown -R $(id -u):$(id -g) /joal \ #Clean && rm -fr \ /tmp/* \