diff --git a/benchmark/Dockerfile b/benchmark/Dockerfile index 91b891575..a7c8e4c13 100644 --- a/benchmark/Dockerfile +++ b/benchmark/Dockerfile @@ -15,6 +15,11 @@ RUN apt-get update && apt-get install -y \ # Make python3.11 the default python3 RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1 +# Install Node.js +RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \ + apt-get install -y nodejs && \ + rm -rf /var/lib/apt/lists/* + # Install Go RUN curl -OL https://golang.org/dl/go1.21.5.linux-amd64.tar.gz && \ tar -C /usr/local -xzf go1.21.5.linux-amd64.tar.gz && \