From 3a39f16e32a8b2a61ceee8106fc53462e05b5e56 Mon Sep 17 00:00:00 2001 From: andre <> Date: Thu, 21 May 2020 00:23:40 +0200 Subject: [PATCH] fix download of iobroker install.sh --- aarch64/Dockerfile | 2 +- amd64/Dockerfile | 2 +- armv7hf/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aarch64/Dockerfile b/aarch64/Dockerfile index e11bd09..3a22f81 100644 --- a/aarch64/Dockerfile +++ b/aarch64/Dockerfile @@ -61,7 +61,7 @@ COPY scripts/userscript_everystart_example.sh userscript_everystart_example.sh # Install ioBroker WORKDIR / RUN apt-get update \ - && curl -sL https://raw.githubusercontent.com/ioBroker/ioBroker/stable-installer/installer.sh | bash - \ + && curl -sL https://iobroker.net/install.sh | bash - \ && echo $(hostname) > /opt/iobroker/.install_host \ && echo $(hostname) > /opt/.firstrun \ && rm -rf /var/lib/apt/lists/* diff --git a/amd64/Dockerfile b/amd64/Dockerfile index f0a3d33..fc300d5 100644 --- a/amd64/Dockerfile +++ b/amd64/Dockerfile @@ -61,7 +61,7 @@ COPY scripts/userscript_everystart_example.sh userscript_everystart_example.sh # Install ioBroker WORKDIR / RUN apt-get update \ - && curl -sL https://raw.githubusercontent.com/ioBroker/ioBroker/stable-installer/installer.sh | bash - \ + && curl -sL https://iobroker.net/install.sh | bash - \ && echo $(hostname) > /opt/iobroker/.install_host \ && echo $(hostname) > /opt/.firstrun \ && rm -rf /var/lib/apt/lists/* diff --git a/armv7hf/Dockerfile b/armv7hf/Dockerfile index a550df3..73f0434 100644 --- a/armv7hf/Dockerfile +++ b/armv7hf/Dockerfile @@ -61,7 +61,7 @@ COPY scripts/userscript_everystart_example.sh userscript_everystart_example.sh # Install ioBroker WORKDIR / RUN apt-get update \ - && curl -sL https://raw.githubusercontent.com/ioBroker/ioBroker/stable-installer/installer.sh | bash - \ + && curl -sL https://iobroker.net/install.sh | bash - \ && echo $(hostname) > /opt/iobroker/.install_host \ && echo $(hostname) > /opt/.firstrun \ && rm -rf /var/lib/apt/lists/*