Skip to content

Commit ea2a45f

Browse files
authored
Merge pull request #2 from node-red/master
Merge NR Master
2 parents 3d9a2a5 + da99564 commit ea2a45f

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.docker/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ COPY flows.json /data
4444
FROM base AS build
4545

4646
# Install Build tools
47-
RUN apk add --no-cache --virtual buildtools build-base linux-headers udev python2 && \
47+
RUN apk add --no-cache --virtual buildtools build-base linux-headers udev python3 && \
4848
npm install --unsafe-perm --no-update-notifier --no-audit --no-fund --only=production && \
4949
/tmp/remove_native_gpio.sh && \
5050
cp -R node_modules prod_node_modules

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,7 @@ The following table shows the provided Manifest Lists.
185185
|----------------------------------------|--------------------------------------------|
186186
| latest-18, 3.0.0-18 | nodered/node-red:3.0.0-18 |
187187
| | |
188-
| latest-18-minimal, 3.0.0-18-minimal | nodered/node-red:3.0.0-18-minimal |
189-
188+
| latest-18-minimal, 3.0.0-18-minimal | nodered/node-red:3.0.0-18-minimal
190189

191190

192191
With the support of Docker manifest list, there is no need to explicitly add the tag for the architecture to use.
@@ -195,6 +194,7 @@ When a docker run command or docker service command or docker stack command is e
195194
Therefore all tags regarding Raspberry PI's are dropped.
196195

197196
For example: suppose you are running on a Raspberry PI 3B, which has `arm32v7` as architecture. Then just run the following command to pull the image (tagged by `3.0.0-16`), and run the container.
197+
198198
```
199199
docker run -it -p 1880:1880 -v node_red_data:/data --name mynodered nodered/node-red:latest
200200
```

docker-custom/Dockerfile.custom

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ COPY flows.json /data
4343
FROM base AS build
4444

4545
# Install Build tools
46-
RUN apk add --no-cache --virtual buildtools build-base linux-headers udev python2 && \
46+
RUN apk add --no-cache --virtual buildtools build-base linux-headers udev python3 && \
4747
npm install --unsafe-perm --no-update-notifier --no-fund --only=production && \
4848
/tmp/remove_native_gpio.sh && \
4949
cp -R node_modules prod_node_modules

docker-custom/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-docker",
3-
"version": "3.0.0-beta.1",
3+
"version": "3.0.0",
44
"description": "Low-code programming for event-driven applications",
55
"homepage": "http://nodered.org",
66
"license": "Apache-2.0",
@@ -29,7 +29,7 @@
2929
}
3030
],
3131
"dependencies": {
32-
"node-red": "3.0.0-beta.1"
32+
"node-red": "3.0.0"
3333
},
3434
"engines": {
3535
"node": ">=12"

docker-custom/scripts/install_devtools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -ex
44
# Installing Devtools
55
if [[ ${TAG_SUFFIX} != *"minimal" ]]; then
66
echo "Installing devtools"
7-
apk add --no-cache --virtual devtools build-base linux-headers udev python2 python3
7+
apk add --no-cache --virtual devtools build-base linux-headers udev python3
88
else
99
echo "Skip installing devtools"
1010
fi

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-docker",
3-
"version": "3.0.0-beta.1",
3+
"version": "3.0.0",
44
"description": "Low-code programming for event-driven applications",
55
"homepage": "http://nodered.org",
66
"license": "Apache-2.0",
@@ -29,7 +29,7 @@
2929
}
3030
],
3131
"dependencies": {
32-
"node-red": "3.0.0-beta.1"
32+
"node-red": "3.0.0"
3333
},
3434
"engines": {
3535
"node": ">=12"

0 commit comments

Comments
 (0)