10 lines
178 B
Docker
10 lines
178 B
Docker
|
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"]
|