You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

10 lines
393 B

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" ]