From 6b5f48da2f7e274a1496d075cb9334ac0ac1324d Mon Sep 17 00:00:00 2001 From: Ian Minoso Date: Fri, 2 Dec 2016 16:34:00 -0500 Subject: [PATCH] Alternative installation of webpack in Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9724c846c..bd3753703 100644 --- a/Dockerfile +++ b/Dockerfile @@ -89,7 +89,8 @@ ADD static static ADD static/js/directives/components static/dist/components # Run Webpack -RUN npm run build +RUN npm install -g webpack +RUN webpack # Install Grunt RUN npm install -g grunt-cli