ethstats-server/Dockerfile
2017-10-26 14:07:13 +03:00

10 lines
162 B
Docker

FROM mhart/alpine-node:latest
ADD . /eth-netstats
WORKDIR /eth-netstats
RUN npm install && npm install -g grunt-cli && grunt
EXPOSE 3000
CMD ["npm", "start"]