From 1e81a38ab456987d9f0d29730cd9875a4aed26ab Mon Sep 17 00:00:00 2001 From: Michael Parker Date: Fri, 6 Sep 2019 17:02:36 -0400 Subject: [PATCH] actually install npm because reasons --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 531d7fa..85a9725 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN apt update \ && apt upgrade -y \ && apt install -y lib32gcc1 lib32stdc++6 unzip curl iproute2 libgdiplus \ && curl -sL https://deb.nodesource.com/setup_6.x | bash - \ - && apt install -y nodejs \ + && apt install -y nodejs npm \ && mkdir /node_modules \ && npm install --prefix / ws \ && useradd -d /home/container -m container