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.
10 lines
393 B
Plaintext
10 lines
393 B
Plaintext
FROM ubuntu:22.04
|
|
|
|
RUN apt-get update && apt-get install wget tar -y
|
|
|
|
RUN wget https://github.com/cirocosta/monero-exporter/releases/download/v0.0.2/monero-exporter_0.0.2_linux_amd64.tar.gz -O monero-exporter.tar.gz && \
|
|
tar xzvf monero-exporter.tar.gz && \
|
|
mv ./monero-exporter /usr/local/bin && \
|
|
chmod +x /usr/local/bin/monero-exporter
|
|
|
|
ENTRYPOINT [ "/usr/local/bin/monero-exporter" ] |