ethstats-server/Dockerfile

10 lines
162 B
Docker
Raw Normal View History

2017-10-26 13:07:13 +02:00
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"]