diff --git a/debian12/Dockerfile b/debian12/Dockerfile index f027ec0..a0b0273 100644 --- a/debian12/Dockerfile +++ b/debian12/Dockerfile @@ -63,7 +63,12 @@ RUN apt-get update && apt-get upgrade -y \ && mkdir /opt/scripts/.docker_config \ && echo "${VERSION}" > /opt/scripts/.docker_config/.thisisdocker \ # Run iobroker installer - && curl -sL https://iobroker.net/install.sh | bash - \ + #&& curl -sL https://iobroker.net/install.sh | bash - \ + # Temp Testing + && curl -sL https://iobroker.net/install.sh -o install.sh \ + && sed -i 's/NODE_MAJOR=[0-9]\+/NODE_MAJOR=${NODE}/' install.sh \ + && sed -i 's|NODE_JS_BREW_URL=.*|NODE_JS_BREW_URL="https://nodejs.org"|' install.sh \ + && bash install.sh # Deleting UUID from build && iobroker unsetup -y \ && echo "true" > /opt/iobroker/.fresh_install \