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