From d24cdfefc8a614f77ea9ec04dd96943951dee4e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Barc=C3=A9los?= Date: Wed, 24 Apr 2024 13:58:55 +0200 Subject: [PATCH] benchkit: Fix Node installation in Dockerimage The new node script installer doesn't work with sh, only with bash. --- benchkit/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchkit/Dockerfile b/benchkit/Dockerfile index 08e1510fd..4be7d38c3 100644 --- a/benchkit/Dockerfile +++ b/benchkit/Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update && \ apt-get upgrade -y && \ apt-get install -y curl -RUN curl -sL https://deb.nodesource.com/setup_${NODE_VERSION:=10}.x | sh +RUN curl -sL https://deb.nodesource.com/setup_${NODE_VERSION:=10}.x | bash - RUN apt-get update && \ apt-get upgrade -y && \