Skip to content

Commit

Permalink
Change sh to bash on install Node in the Dockerfile
Browse files Browse the repository at this point in the history
The updated script for installing Node doesn't support sh.
  • Loading branch information
bigmontz committed Mar 28, 2024
1 parent 7367f6b commit fb6c729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testkit/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,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 fb6c729

Please sign in to comment.