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

Commit

Permalink
removed fig workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
luebken committed Jun 20, 2014
1 parent c93abfe commit 7257f2e
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
#
# Note "> /dev/null" workaround for fig-bug https://github.com/orchardup/fig/issues/239
#
FROM dockerfile/nodejs

MAINTAINER Matthias Luebken, [email protected]

WORKDIR /home/mean

# Install Mean.JS Prerequisites
RUN npm install -g grunt-cli > /dev/null
RUN npm install -g bower > /dev/null
RUN npm install -g grunt-cli
RUN npm install -g bower

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

# Manually trigger bower. Why doesnt this work via 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 > /dev/null
RUN bower install --config.interactive=false --allow-root

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

0 comments on commit 7257f2e

Please sign in to comment.