From 172bc66a6b510b6b086758c49c575208399c14b7 Mon Sep 17 00:00:00 2001 From: Thomas Watson Date: Wed, 19 Feb 2025 06:37:17 +0100 Subject: [PATCH] Clean up benchmark Sirun Dockerfile (#5287) - Don't install older Node.js versions no longer supported - Change the default Node.js version from v18 to v22 --- benchmark/sirun/Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/benchmark/sirun/Dockerfile b/benchmark/sirun/Dockerfile index ad27d5d71b1..d033dc738ea 100644 --- a/benchmark/sirun/Dockerfile +++ b/benchmark/sirun/Dockerfile @@ -30,13 +30,11 @@ RUN wget -O sirun.tar.gz https://github.com/DataDog/sirun/releases/download/v0.1 RUN mkdir -p /usr/local/nvm \ && wget -q -O - https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash \ && . $NVM_DIR/nvm.sh \ - && nvm install --no-progress 14.21.3 \ - && nvm install --no-progress 16.20.1 \ && nvm install --no-progress 18.16.1 \ && nvm install --no-progress 20.4.0 \ && nvm install --no-progress 22.10.0 \ - && nvm alias default 18 \ - && nvm use 18 + && nvm alias default 22 \ + && nvm use 22 RUN mkdir /opt/insecure-bank-js RUN git clone --depth 1 https://github.com/hdiv/insecure-bank-js.git /opt/insecure-bank-js