Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
workaround manual bower install
Browse files Browse the repository at this point in the history
  • Loading branch information
luebken committed Jun 18, 2014
1 parent a68b588 commit 04e74f2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Expand Up @@ -13,7 +13,12 @@ RUN npm install -g bower > /dev/null

# Install Mean.JS packages
ADD package.json /home/mean/package.json
RUN npm install > /dev/null
RUN npm install

ADD .bowerrc /home/mean/.bowerrc
ADD bower.json /home/mean/bower.json
# why doesnt this work via npm install?
RUN bower install --config.interactive=false --allow-root

# Make everything available for start
ADD . /home/mean
Expand Down

0 comments on commit 04e74f2

Please sign in to comment.