From c4670c3bf0cf58f3bfae761a1c46e47d5a9151de Mon Sep 17 00:00:00 2001 From: urielch Date: Tue, 9 Apr 2019 09:40:05 +0300 Subject: [PATCH] nodesource setup need bash --- ubuntu.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu.Dockerfile b/ubuntu.Dockerfile index bcb94ff..13b0bc2 100644 --- a/ubuntu.Dockerfile +++ b/ubuntu.Dockerfile @@ -17,7 +17,7 @@ RUN set -ex;\ RUN set -ex;\ echo setup node; \ - wget -qO- https://deb.nodesource.com/setup_10.x | /bin/sh -;\ + wget -qO- https://deb.nodesource.com/setup_10.x | /bin/bash -;\ apt-get install -y nodejs;\ rm -rf /var/cache/* /var/log/apt/* /var/lib/apt/lists/*;