From bda260d0ec4f1a62117bd78a5628e50d9f3f6e1f Mon Sep 17 00:00:00 2001 From: Alexandre Boyer <33391039+ng-galien@users.noreply.github.com> Date: Mon, 1 Jan 2024 07:00:06 +0100 Subject: [PATCH] Add Dockerfile for Node-RED with Pulsar Added a Dockerfile in the docker directory that creates a Node-RED Docker image and installs a specific version of the node-red-contrib-pulsar plugin. This allows for containerized use of Node-RED with this specific plugin. --- docker/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 docker/Dockerfile diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000..3bc4f5f --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,3 @@ +FROM nodered/node-red:latest + +RUN npm install ng-galien/node-red-contrib-pulsar#main \ No newline at end of file