From 614d9c9b0d8c8777012293a35b75f23482299680 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 17 Dec 2024 18:40:30 -0800 Subject: [PATCH] feat: Install jest in Dockerfile --- benchmark/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/benchmark/Dockerfile b/benchmark/Dockerfile index 053298324..e593fa9d1 100644 --- a/benchmark/Dockerfile +++ b/benchmark/Dockerfile @@ -15,10 +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 +# Install Node.js and Jest RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \ apt-get install -y nodejs && \ - rm -rf /var/lib/apt/lists/* + rm -rf /var/lib/apt/lists/* && \ + npm install -g jest # Install Go RUN curl -OL https://golang.org/dl/go1.21.5.linux-amd64.tar.gz && \