Skip to content

Commit 7f38a08

Browse files
committed
[WIP]Node 20
1 parent b829119 commit 7f38a08

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

dev/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:10.15-slim
1+
FROM node:20.11.1-slim
22

33
RUN apt-get update && apt-get install -y \
44
python \

packagingenv/Dockerfile.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM {{ dist }}:{{ version }}
55
RUN yum -y install gcc-c++ make git libicu-devel rpmdevtools
66

77
# Add NodeSource repo
8-
RUN curl --silent --location https://rpm.nodesource.com/setup_10.x | bash -
8+
RUN curl --silent --location https://rpm.nodesource.com/setup_20.x | bash -
99

1010
{%- if version in ('centos8', 'rockylinux8') %}
1111

packagingenv/focal/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get -y install dh-systemd
88

99

1010
# Add NodeSource repo
11-
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
11+
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash -
1212

1313
# Install node
1414
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install nodejs

packagingenv/rockylinux8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM rockylinux:8
33
RUN yum -y install gcc-c++ make git libicu-devel rpmdevtools
44

55
# Add NodeSource repo
6-
RUN curl --silent --location https://rpm.nodesource.com/setup_10.x | bash -
6+
RUN curl --silent --location https://rpm.nodesource.com/setup_20.x | bash -
77

88
# Install development tools
99
RUN yum -y module install nodejs:10

testingenv/Dockerfile.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM {{ dist }}:{{ version }}
33
{% if dist in ('centos', 'fedora', 'rockylinux') -%}
44

55
# Add NodeSource repo
6-
RUN curl --silent --location https://rpm.nodesource.com/setup_10.x | bash -
6+
RUN curl --silent --location https://rpm.nodesource.com/setup_20.x | bash -
77

88
# Install development tools
99
RUN yum -y install nodejs

testingenv/focal/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN apt-get clean && apt-get update && \
55
DEBIAN_FRONTEND=noninteractive apt-get -y install curl gnupg
66

77
# Add NodeSource repo
8-
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
8+
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash -
99

1010
# Install node
1111
RUN apt-get update && \

testingenv/rockylinux8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM rockylinux:8
22

33
# Add NodeSource repo
4-
RUN curl --silent --location https://rpm.nodesource.com/setup_10.x | bash -
4+
RUN curl --silent --location https://rpm.nodesource.com/setup_20.x | bash -
55

66
# Install development tools
77
RUN yum -y install nodejs

0 commit comments

Comments
 (0)