Skip to content

Commit 53a9071

Browse files
committed
Update to node 14
1 parent 41bd89e commit 53a9071

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

repo2docker/buildpacks/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
5858
RUN wget --quiet -O - https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
5959
DISTRO="bionic" && \
60-
echo "deb https://deb.nodesource.com/node_10.x $DISTRO main" >> /etc/apt/sources.list.d/nodesource.list && \
61-
echo "deb-src https://deb.nodesource.com/node_10.x $DISTRO main" >> /etc/apt/sources.list.d/nodesource.list
60+
echo "deb https://deb.nodesource.com/node_14.x $DISTRO main" >> /etc/apt/sources.list.d/nodesource.list && \
61+
echo "deb-src https://deb.nodesource.com/node_14.x $DISTRO main" >> /etc/apt/sources.list.d/nodesource.list
6262
6363
# Base package installs are not super interesting to users, so hide their outputs
6464
# If install fails for some reason, errors will still be printed

tests/base/node/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Test that node 12 and npm 6 are installed and runnable.

tests/base/node10/verify renamed to tests/base/node/verify

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -ex
55
# check node system package and its version
66
which node
77
node --version
8-
node --version | grep v10
8+
node --version | grep v14
99

1010
which npm
1111
npm --version

tests/base/node10/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)