From 72fe50bef691f3601fc206d54298f8de3f734d76 Mon Sep 17 00:00:00 2001 From: Jeff Wilson Date: Thu, 2 Mar 2017 03:14:20 -0500 Subject: [PATCH] Fix command sudo not found error in dev Dockerfile (#6346) --- virtualization/Docker/Dockerfile.dev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtualization/Docker/Dockerfile.dev b/virtualization/Docker/Dockerfile.dev index 4c75db36accb..62c9f9f65964 100644 --- a/virtualization/Docker/Dockerfile.dev +++ b/virtualization/Docker/Dockerfile.dev @@ -30,7 +30,7 @@ RUN pip3 install --no-cache-dir -r requirements_all.txt && \ # BEGIN: Development additions # Install nodejs -RUN curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash - && \ +RUN curl -sL https://deb.nodesource.com/setup_7.x | bash - && \ apt-get install -y nodejs # Install tox