From d8ddaf9cf24e6431a88f474487002fe5eedea5b8 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Wed, 26 Nov 2025 16:45:41 +0100 Subject: [PATCH] fix incorrect command to introduce node v20.x built with glibc 2.17 in /node20217 in CentOS 7 container images --- centos-7.9-python3/Dockerfile | 2 +- centos-7.9/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/centos-7.9-python3/Dockerfile b/centos-7.9-python3/Dockerfile index 52b509c..a9845c8 100644 --- a/centos-7.9-python3/Dockerfile +++ b/centos-7.9-python3/Dockerfile @@ -9,4 +9,4 @@ RUN yum -y install bzip2 curl diffutils file gcc-c++ git gzip make openssl opens RUN yum -y update ca-certificates RUN python3 -m pip install archspec # Usable Node 20 required for GitHub actions. The one from GitHub doesn't work with this containers GLibc -curl -sL https://unofficial-builds.nodejs.org/download/release/v20.9.0/node-v20.9.0-linux-x64-glibc-217.tar.xz | tar -xJ --strip-components 1 -C /node20217 +RUN mkdir /node20217 && curl -sL https://unofficial-builds.nodejs.org/download/release/v20.9.0/node-v20.9.0-linux-x64-glibc-217.tar.xz | tar -xJ --strip-components 1 -C /node20217 diff --git a/centos-7.9/Dockerfile b/centos-7.9/Dockerfile index 917bc9c..6a4c666 100644 --- a/centos-7.9/Dockerfile +++ b/centos-7.9/Dockerfile @@ -10,4 +10,4 @@ RUN yum -y update ca-certificates # In order to install archspec we need to upgrade pip to latest version for Python 2 RUN python -m pip install --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org --upgrade 'pip<21' && python -m pip install archspec # Usable Node 20 required for GitHub actions. The one from GitHub doesn't work with this containers GLibc -RUN curl -sL https://unofficial-builds.nodejs.org/download/release/v20.9.0/node-v20.9.0-linux-x64-glibc-217.tar.xz | tar -xJ --strip-components 1 -C /node20217 +RUN mkdir /node20217 && curl -sL https://unofficial-builds.nodejs.org/download/release/v20.9.0/node-v20.9.0-linux-x64-glibc-217.tar.xz | tar -xJ --strip-components 1 -C /node20217