Skip to content

Commit 9212cc5

Browse files
authored
benchkit: Fix Node installation in Dockerimage (#1190)
The new node script installer doesn't work with sh, only with bash.
1 parent 7793756 commit 9212cc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchkit/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get update && \
1111
apt-get upgrade -y && \
1212
apt-get install -y curl
1313

14-
RUN curl -sL https://deb.nodesource.com/setup_${NODE_VERSION:=10}.x | sh
14+
RUN curl -sL https://deb.nodesource.com/setup_${NODE_VERSION:=10}.x | bash -
1515

1616
RUN apt-get update && \
1717
apt-get upgrade -y && \

0 commit comments

Comments
 (0)