Switch to side-by-side view
--- a/Dockerfile +++ b/Dockerfile @@ -17,9 +17,13 @@ # get the node package file # wildcard used to ensure both package.json and package-lock.json are copied COPY package*.json /usr/src/ne/ +COPY bower.json /usr/src/ne/ +COPY .bowerrc /usr/src/ne/ # install dependencies +RUN npm install -g bower RUN npm install +RUN bower install --allow-root COPY . .