Skip to content

Commit

Permalink
Pin node-red dependencies in nodered Dockerfile (#50)
Browse files Browse the repository at this point in the history
* Pin node-red-node-ui-table to 0.4.3 in Dockerfile

This fixes a new issue which node-red-node-ui-table 0.4.4 added which causes this warning and the UI no longer loads:
    
    Node module cannot be loaded on this version. Requires: >=3.0.0

Fixes #49

Signed-off-by: Kelly Campbell <[email protected]>

* Pin all node-red npm dependencies in nodered Dockerfile

Signed-off-by: Kelly Campbell <[email protected]>

---------

Signed-off-by: Kelly Campbell <[email protected]>
  • Loading branch information
kellycampbell authored Oct 11, 2024
1 parent 994614c commit 55b790e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker/images/nodered/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM nodered/node-red:2.2.3
RUN npm install node-red-dashboard
RUN npm install node-red-contrib-ui-actions
RUN npm install node-red-node-ui-table
RUN npm install node-red-contrib-ui-level
RUN npm install node-red-dashboard@3.6.5
RUN npm install node-red-contrib-ui-actions@0.1.8
RUN npm install node-red-node-ui-table@0.4.3
RUN npm install node-red-contrib-ui-level@0.1.46

0 comments on commit 55b790e

Please sign in to comment.