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