From 673cbea714e43cf256c7b0360f961d49614659cd Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 18 Dec 2025 14:54:47 +0100 Subject: [PATCH] Fix Dockerfile syntax for bashio installation --- netalertx/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/netalertx/Dockerfile b/netalertx/Dockerfile index 3af315f66..2fc5c962f 100644 --- a/netalertx/Dockerfile +++ b/netalertx/Dockerfile @@ -31,8 +31,7 @@ ENV READ_WRITE_FOLDERS="$READ_WRITE_FOLDERS $NETALERTX_DATA" # Add rootfs COPY rootfs/ / -RUN # Install bashio - BASHIO_VERSION="0.14.3" && \ +RUN BASHIO_VERSION="0.14.3" && \ mkdir -p /tmp/bashio && \ curl -f -L -s -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 && \