Alternative installation of webpack in Dockerfile

This commit is contained in:
Ian Minoso 2016-12-02 16:34:00 -05:00
parent 93798c3337
commit 6b5f48da2f

View file

@ -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