Add docker file

This commit is contained in:
jamesdave 2017-12-23 19:59:20 +07:00
parent 5d3ed04c55
commit 6996eb164f
1 changed files with 9 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM node
RUN git clone https://github.com/cubedro/eth-netstats /eth-netstats
WORKDIR /eth-netstats
RUN npm install
RUN npm install -g grunt-cli
RUN grunt
CMD ["npm", "start"]