Skip to content

Commit 2b66ae4

Browse files
Merge pull request #1113 from PeterDaveHello/update-node.js
Update node.js v12 from v12.10.0 to v12.11.0
2 parents c66cc45 + 82f9946 commit 2b66ae4

5 files changed

Lines changed: 6 additions & 5 deletions

File tree

12/alpine/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.9
22

3-
ENV NODE_VERSION 12.10.0
3+
ENV NODE_VERSION 12.11.0
44

55
RUN addgroup -g 1000 node \
66
&& adduser -u 1000 -G node -s /bin/sh -D node \
@@ -40,6 +40,7 @@ RUN addgroup -g 1000 node \
4040
&& grep " node-v$NODE_VERSION.tar.xz\$" SHASUMS256.txt | sha256sum -c - \
4141
&& tar -xf "node-v$NODE_VERSION.tar.xz" \
4242
&& cd "node-v$NODE_VERSION" \
43+
&& curl -sfSL https://github.com/nodejs/node/archive/v${NODE_VERSION}.tar.gz | tar -xz --strip-components=1 -- node-12.11.0/deps/v8/test/torque/test-torque.tq \
4344
&& ./configure \
4445
&& make -j$(getconf _NPROCESSORS_ONLN) V= \
4546
&& make install \

12/buster-slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM debian:buster-slim
33
RUN groupadd --gid 1000 node \
44
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node
55

6-
ENV NODE_VERSION 12.10.0
6+
ENV NODE_VERSION 12.11.0
77

88
RUN buildDeps='xz-utils' \
99
&& ARCH= && dpkgArch="$(dpkg --print-architecture)" \

12/buster/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM buildpack-deps:buster
33
RUN groupadd --gid 1000 node \
44
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node
55

6-
ENV NODE_VERSION 12.10.0
6+
ENV NODE_VERSION 12.11.0
77

88
RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
99
&& case "${dpkgArch##*-}" in \

12/stretch-slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM debian:stretch-slim
33
RUN groupadd --gid 1000 node \
44
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node
55

6-
ENV NODE_VERSION 12.10.0
6+
ENV NODE_VERSION 12.11.0
77

88
RUN buildDeps='xz-utils' \
99
&& ARCH= && dpkgArch="$(dpkg --print-architecture)" \

12/stretch/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM buildpack-deps:stretch
33
RUN groupadd --gid 1000 node \
44
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node
55

6-
ENV NODE_VERSION 12.10.0
6+
ENV NODE_VERSION 12.11.0
77

88
RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
99
&& case "${dpkgArch##*-}" in \

0 commit comments

Comments
 (0)