@@ -8,7 +8,6 @@ node_selection=$(whiptail --title "Node-RED nodes" --checklist --separate-output
88 " node-red-dashboard" " " " ON" \
99 " node-red-contrib-influxdb" " " " ON" \
1010 " node-red-contrib-boolean-logic" " " " ON" \
11- " node-red-node-rbe" " " " ON" \
1211 " node-red-configurable-ping" " " " ON" \
1312 " node-red-node-openweathermap" " " " OFF" \
1413 " node-red-contrib-discord" " " " OFF" \
@@ -46,11 +45,17 @@ node_selection=$(whiptail --title "Node-RED nodes" --checklist --separate-output
4645 " node-red-contrib-generic-ble" " " " OFF" \
4746 " node-red-contrib-zigbee2mqtt" " " " OFF" \
4847 " node-red-contrib-vcgencmd" " " " OFF" \
49- " node-red-contrib-themes/midnight-red" " " " OFF" \
5048 " node-red-contrib-tf-function" " " " OFF" \
5149 " node-red-contrib-tf-model" " " " OFF" \
5250 " node-red-contrib-post-object-detection" " " " OFF" \
5351 " node-red-contrib-bert-tokenizer" " " " OFF" \
52+ " node-red-contrib-boolean-logic-ultimate" " " " OFF" \
53+ " node-red-contrib-chartjs" " " " OFF" \
54+ " node-red-contrib-md5" " " " OFF" \
55+ " node-red-contrib-pushsafer" " " " OFF" \
56+ " node-red-node-tail" " " " OFF" \
57+ " @flowfuse/node-red-dashboard" " " " OFF" \
58+ " @node-red-contrib-themes/theme-collection" " " " OFF" \
5459 3>&1 1>&2 2>&3 )
5560
5661# #echo "$check_selection"
@@ -70,20 +75,16 @@ FROM nodered/node-red:${DOCKERHUB_TAG}
7075
7176# reference argument - omitted defaults to null
7277ARG EXTRA_PACKAGES
73- ENV EXTRA_PACKAGES=${EXTRA_PACKAGES}
7478
7579# default user is node-red - need to be root to install packages
7680USER root
7781
7882# install packages
79- RUN apk update && apk add --no-cache eudev-dev ${EXTRA_PACKAGES}
83+ RUN apk add --no-cache eudev-dev ${EXTRA_PACKAGES}
8084
8185# switch back to default user
8286USER node-red
8387
84- # variable not needed inside running container
85- ENV EXTRA_PACKAGES=
86-
8788# add-on nodes follow
8889
8990EOT
0 commit comments