aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tools/dockerfile/node_deps.include
blob: 7d37d671467cfc78df9b0e9a960f3445b873c923 (plain)
1
2
3
4
5
6
7
#==================
# Node dependencies

# Install nvm
RUN touch .profile
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.25.4/install.sh | bash
RUN /bin/bash -l -c "nvm install 0.12 && npm config set cache /tmp/npm-cache"