From 671131669a37db92bd3dbe9f5fad7757d7ccefcf Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Thu, 31 Jan 2019 15:56:04 -0500 Subject: [PATCH] Add npm to apt-get command --- scripts/cross/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cross/Dockerfile b/scripts/cross/Dockerfile index 0c1da3458a..968c0f01a1 100644 --- a/scripts/cross/Dockerfile +++ b/scripts/cross/Dockerfile @@ -13,7 +13,7 @@ RUN apt-get update -y && apt-get install --no-install-recommends -y -q \ libltdl7 RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - -RUN apt-get install -y nodejs +RUN apt-get install -y nodejs npm RUN rm -rf /var/lib/apt/lists/*