Node-RED: Difference between revisions

From Wiki
mNo edit summary
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
== Adding Prerequisites to Docker ==
== Adding Prerequisites to Docker ==
<pre>
<pre>
  FROM nodered/node-red:latest
FROM nodered/node-red:latest
    USER root
USER root
    RUN apk add py3-pip py3-numpy py3-pandas py3-scikit-learn
RUN apk add py3-pip py3-numpy py3-pandas py3-scikit-learn
    RUN pip install tensorflow
RUN pip install tensorflow
    USER node-red
USER node-red
</pre>
</pre>


Line 30: Line 30:


[[Category:Home Automation]]
[[Category:Home Automation]]
[[Category:Programming]]

Latest revision as of 15:15, 28 September 2024

Adding Prerequisites to Docker

FROM nodered/node-red:latest
USER root
RUN apk add py3-pip py3-numpy py3-pandas py3-scikit-learn
RUN pip install tensorflow
USER node-red

DevOps

Terminology

Flows are the tabs

rand

Nodes are the boxes with inputs and outputs

rand


Links