From c07da56ed62aca16bc5c2ce8e719cdab0bd5157e Mon Sep 17 00:00:00 2001 From: AlaricChan Date: Tue, 10 Apr 2018 06:12:35 +0000 Subject: [PATCH] Test npm compatibility --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cbcbe4e2..288e27b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,11 @@ # Copyright 2016, EMC, Inc. ARG repo=node -ARG tag=8.11.1 +ARG tag=6.13.0 FROM ${repo}:${tag} +RUN npm install -g npm@5.7.1 + COPY . /RackHD/on-core/ RUN cd /RackHD/on-core \