This commit is contained in:
buanet
2024-05-22 18:56:17 +02:00
parent dc9908c3ba
commit 13cb29bed7

View File

@@ -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 \