Skip to content

Commit fb6c729

Browse files
committed
Change sh to bash on install Node in the Dockerfile
The updated script for installing Node doesn't support sh.
1 parent 7367f6b commit fb6c729

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testkit/Dockerfile

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

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

1818
RUN apt-get update && \
1919
apt-get upgrade -y && \

0 commit comments

Comments
 (0)