Add automated docker hub builds

pull/5/head
Péter Szilágyi 7 years ago
parent 2e72a285ac
commit 157caeafe5
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D
  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