mirror of
https://git.wownero.com/lza_menace/docker-wownero.git
synced 2024-08-15 01:03:31 +00:00
11 lines
201 B
Text
11 lines
201 B
Text
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"]
|