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

Commit

Permalink
Merge pull request #1287 from lirantal/feature/docker-efficient-npm-b…
Browse files Browse the repository at this point in the history
…ower-changes

Updating Dockerfile for more efficient image building
  • Loading branch information
lirantal committed Apr 2, 2016
2 parents 8da3725 + 1bd42f6 commit bc0b4a6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,13 @@ WORKDIR /opt/mean.js
# and utilities docker container cache to not needing to rebuild
# and install node_modules/ everytime we build the docker, but only
# when the local package.json file changes.
# Install npm packages
ADD package.json /opt/mean.js/package.json
RUN npm install --quiet

# Install bower packages
ADD bower.json /opt/mean.js/bower.json
ADD .bowerrc /opt/mean.js/.bowerrc

# Install MEAN.JS packages
RUN npm install --quiet
RUN bower install --quiet --allow-root --config.interactive=false

# Share local directory on the docker container
Expand Down

0 comments on commit bc0b4a6

Please sign in to comment.