@@ -8,7 +8,6 @@ node_selection=$(whiptail --title "Node-RED nodes" --checklist --separate-output
8
8
" node-red-dashboard" " " " ON" \
9
9
" node-red-contrib-influxdb" " " " ON" \
10
10
" node-red-contrib-boolean-logic" " " " ON" \
11
- " node-red-node-rbe" " " " ON" \
12
11
" node-red-configurable-ping" " " " ON" \
13
12
" node-red-node-openweathermap" " " " OFF" \
14
13
" node-red-contrib-discord" " " " OFF" \
@@ -46,11 +45,17 @@ node_selection=$(whiptail --title "Node-RED nodes" --checklist --separate-output
46
45
" node-red-contrib-generic-ble" " " " OFF" \
47
46
" node-red-contrib-zigbee2mqtt" " " " OFF" \
48
47
" node-red-contrib-vcgencmd" " " " OFF" \
49
- " node-red-contrib-themes/midnight-red" " " " OFF" \
50
48
" node-red-contrib-tf-function" " " " OFF" \
51
49
" node-red-contrib-tf-model" " " " OFF" \
52
50
" node-red-contrib-post-object-detection" " " " OFF" \
53
51
" 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" \
54
59
3>&1 1>&2 2>&3 )
55
60
56
61
# #echo "$check_selection"
@@ -70,20 +75,16 @@ FROM nodered/node-red:${DOCKERHUB_TAG}
70
75
71
76
# reference argument - omitted defaults to null
72
77
ARG EXTRA_PACKAGES
73
- ENV EXTRA_PACKAGES=${EXTRA_PACKAGES}
74
78
75
79
# default user is node-red - need to be root to install packages
76
80
USER root
77
81
78
82
# install packages
79
- RUN apk update && apk add --no-cache eudev-dev ${EXTRA_PACKAGES}
83
+ RUN apk add --no-cache eudev-dev ${EXTRA_PACKAGES}
80
84
81
85
# switch back to default user
82
86
USER node-red
83
87
84
- # variable not needed inside running container
85
- ENV EXTRA_PACKAGES=
86
-
87
88
# add-on nodes follow
88
89
89
90
EOT
0 commit comments