Matteo Scandolo | 3ba6aff | 2016-04-06 14:44:56 -0700 | [diff] [blame] | 1 | FROM xosproject/xos |
2 | |||||
3 | # install nodejs | ||||
4 | RUN curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - | ||||
5 | RUN sudo apt-get install -y nodejs | ||||
6 | RUN node -v | ||||
7 | |||||
8 | # install node modules | ||||
9 | # RUN cd /opt/xos/tests/api; npm install |