We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 929982a commit 7bab634Copy full SHA for 7bab634
Docker/ARM/Dockerfile
@@ -1,17 +1,6 @@
1
FROM nodered/node-red-docker:rpi-v8
2
COPY Docker/ARM/qemu-arm-static /usr/bin
3
4
-# build and package
5
-RUN mkdir /tmp/install
6
-WORKDIR /tmp/install
7
-COPY --chown=node-red package*.json ./
8
-RUN npm install
9
-COPY --chown=node-red . .
10
-
11
-RUN npm pack
12
-RUN cp *.tgz /usr/src/node-red
13
-RUN cd .. && rm -rf /tmp/install
14
+# Install the node from npm for ARM builds
15
WORKDIR /usr/src/node-red
16
-RUN npm install `ls mindconnect-node-red-contrib*.tgz`
17
-RUN rm mindconnect-node-red-contrib*.tgz
+RUN npm install @mindconnect/node-red-contrib-mindconnect@latest
0 commit comments