From 53b6ce9a4771b0c71a7f39ba1f439e7290666dc3 Mon Sep 17 00:00:00 2001 From: Moss Cantwell Date: Tue, 20 Feb 2024 11:15:44 +1300 Subject: [PATCH] fix: correct c7 node version install mistakenly using arm download for x86_64 target --- images/rpmbuild-centos7/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/rpmbuild-centos7/Dockerfile b/images/rpmbuild-centos7/Dockerfile index 5b2826c..70fc625 100644 --- a/images/rpmbuild-centos7/Dockerfile +++ b/images/rpmbuild-centos7/Dockerfile @@ -1,6 +1,6 @@ FROM ghcr.io/geonet/base-images/centos:centos7 # Install prerequisites -RUN curl -O https://nodejs.org/dist/latest-v20.x/node-v20.11.1-linux-arm64.tar.xz \ +RUN curl -O https://nodejs.org/dist/latest-v20.x/node-v20.11.1-linux-x64.tar.xz \ && tar --strip-components 1 -xvf node-v* -C /usr/local \ && yum install -y epel-release