Skip to content

Commit

Permalink
benchkit: Fix Node installation in Dockerimage (#1190)
Browse files Browse the repository at this point in the history
The new node script installer doesn't work with sh, only with bash.
  • Loading branch information
bigmontz authored Apr 24, 2024
1 parent 7793756 commit 9212cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchkit/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down

0 comments on commit 9212cc5

Please sign in to comment.