14 lines
364 B
Docker
14 lines
364 B
Docker
|
|
FROM nodered/node-red:2.2.3
|
||
|
|
|
||
|
|
# Copy package.json to the WORKDIR so npm builds all
|
||
|
|
# of your added nodes modules for Node-RED
|
||
|
|
RUN npm install \
|
||
|
|
node-red-contrib-flatter \
|
||
|
|
node-red-node-base64 \
|
||
|
|
node-red-contrib-vacation-timer \
|
||
|
|
node-red-contrib-syslog \
|
||
|
|
node-red-node-rbe \
|
||
|
|
node-red-contrib-influxdb \
|
||
|
|
node-red-node-tail \
|
||
|
|
node-red-contrib-bigtimer
|