From ba289f6db488318b6f6f7dcde5c307bc8c6bfea8 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 17 Dec 2024 19:01:22 -0800 Subject: [PATCH] build: Install nodejs and npm packages in Dockerfile --- benchmark/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/benchmark/Dockerfile b/benchmark/Dockerfile index 644aae271..1eefde4b2 100644 --- a/benchmark/Dockerfile +++ b/benchmark/Dockerfile @@ -19,6 +19,8 @@ RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1 RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \ apt-get install -y nodejs && \ rm -rf /var/lib/apt/lists/* && \ + +# install these in /npm-install ai! npm install -g \ jest \ @babel/core@7.25.2 \