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.
11 lines
307 B
Plaintext
11 lines
307 B
Plaintext
FROM golang:bullseye as OG
|
|
|
|
# Install exporter from Github
|
|
RUN go install github.com/cirocosta/monero-exporter/cmd/monero-exporter@master
|
|
|
|
# Copy installed binary to fresh Ubuntu image
|
|
FROM ubuntu:22.04
|
|
COPY --from=OG /go/bin/monero-exporter /usr/local/bin/monero-exporter
|
|
|
|
ENTRYPOINT [ "monero-exporter" ]
|