Add automated docker hub builds

pull/5/head
Péter Szilágyi 7 years ago committed by Ikmyeong Na
parent f55f3830e4
commit fea4b602d5
No known key found for this signature in database
GPG Key ID: EC674310ADADE2CA
  1. 1
      .dockerignore
  2. 9
      Dockerfile

@ -0,0 +1 @@
**/.git

@ -0,0 +1,9 @@
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"]
Loading…
Cancel
Save