big refactor, add makefile, update dashboard, use nocompile option

This commit is contained in:
lza_menace 2020-12-31 10:45:31 -08:00
parent 288ec0722c
commit 1bbc059f00
6 changed files with 217 additions and 58 deletions

View file

@ -0,0 +1,11 @@
FROM node:8
WORKDIR /opt/wownerod_exporter
RUN git clone https://github.com/lalanza808/monerod_exporter.git --branch=master --depth=1 .
RUN npm install
EXPOSE 8080
ENTRYPOINT ["node", "index.js"]