From 7cb0fc3265574469697c94961251ed91392f8b46 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Fri, 24 Jan 2025 16:09:15 -0500 Subject: [PATCH] Switch AL2 arm64 with libstdc++ 6.0.24 version of node 20 binaries (#5260) Signed-off-by: Peter Zhu Signed-off-by: Sayali Gaikawad --- .../current/build.al2.opensearch.x64.arm64.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/ci/dockerfiles/current/build.al2.opensearch.x64.arm64.dockerfile b/docker/ci/dockerfiles/current/build.al2.opensearch.x64.arm64.dockerfile index ae45e39048..19e9c6c718 100644 --- a/docker/ci/dockerfiles/current/build.al2.opensearch.x64.arm64.dockerfile +++ b/docker/ci/dockerfiles/current/build.al2.opensearch.x64.arm64.dockerfile @@ -165,7 +165,7 @@ RUN pip3 install cmake==3.26.4 RUN if [ `uname -m` = "x86_64" ]; then \ curl -SL https://ci.opensearch.org/ci/dbc/tools/node/node-v20.18.0-linux-x64-glibc-217.tar.xz -o /node20.tar.xz; \ else \ - curl -SL https://ci.opensearch.org/ci/dbc/tools/node/node-v20.18.0-linux-arm64-glibc-226.tar.xz -o /node20.tar.xz; \ + curl -SL https://ci.opensearch.org/ci/dbc/tools/node/node-v20.18.0-linux-arm64-glibc-226-libstdc++-6.0.24.tar.xz -o /node20.tar.xz; \ fi; \ mkdir /node_al2 && \ tar -xf /node20.tar.xz --strip-components 1 -C /node_al2 && \