break out compose and docker files for compile vs no-compile options

This commit is contained in:
lza_menace
2020-10-05 15:37:59 -07:00
parent 74d800614d
commit 7d31fda77d
6 changed files with 136 additions and 10 deletions

View File

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