Description
RUN apt-get -y install nodejs && \ ln -s /usr/bin/nodejs /usr/bin/node && \ apt-get -y install npm && \ npm install npm@latest -g && \ npm install -g bower && \ npm install -g ember-cli
should get reduced to
RUN apt-get -y install nodejs && \ ln -s /usr/bin/nodejs /usr/bin/node && \ apt-get -y install npm && \ npm install npm@latest -g
The locally installed versions of bower and ember-cli aren't being used anymore. Removing these cuts the docker build time significantly.
Attachments
Attachments
Issue Links
- is duplicated by
-
HADOOP-16051 branch-2 build is failing by npm error
- Resolved