Merge pull request #2194 from iminoso/webpack

Alternative installation of webpack in Dockerfile
This commit is contained in:
Ian Minoso 2016-12-02 16:45:44 -05:00 committed by GitHub
commit 35f5e91450

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