You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
200 B
Plaintext
12 lines
200 B
Plaintext
4 years ago
|
FROM node:8
|
||
|
|
||
|
WORKDIR /opt/monerod_exporter
|
||
|
|
||
|
RUN git clone https://github.com/lalanza808/monerod_exporter.git --branch=docker --depth=1 .
|
||
|
|
||
|
RUN npm install
|
||
|
|
||
|
EXPOSE 8080
|
||
|
|
||
|
ENTRYPOINT ["node", "index.js"]
|