diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a80be61 --- /dev/null +++ b/Dockerfile @@ -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"]