mirror of
https://github.com/cirocosta/monero-exporter.git
synced 2024-10-01 08:25:41 -04:00
debdce3fb2
this is a big refactor, essentially rewriting the custom collector from scratch, and as such, creating a new dashboard based on the new metrics. Signed-off-by: Ciro S. Costa <utxobr@protonmail.com>
31 lines
878 B
Docker
31 lines
878 B
Docker
ARG BUILDER_IMAGE=golang@sha256:4544ae57fc735d7e415603d194d9fb09589b8ad7acd4d66e928eabfb1ed85ff1
|
|
ARG RUNTIME_IMAGE=gcr.io/distroless/static@sha256:c9f9b040044cc23e1088772814532d90adadfa1b86dcba17d07cb567db18dc4e
|
|
|
|
|
|
FROM $BUILDER_IMAGE as builder
|
|
|
|
WORKDIR /workspace
|
|
|
|
COPY .git .git
|
|
COPY go.mod go.mod
|
|
COPY go.sum go.sum
|
|
COPY pkg/ pkg/
|
|
COPY cmd/ cmd/
|
|
|
|
RUN set -x && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on \
|
|
go build -a -v \
|
|
-ldflags "-s -w -X main.version=$(git tag) -X main.commit=$(git rev-parse HEAD)" \
|
|
-tags osusergo,netgo,static_build \
|
|
-trimpath \
|
|
-o monero-exporter \
|
|
./cmd/monero-exporter
|
|
|
|
|
|
FROM $RUNTIME_IMAGE
|
|
|
|
WORKDIR /
|
|
COPY --from=builder /workspace/monero-exporter .
|
|
USER 65532:65532
|
|
|
|
ENTRYPOINT ["/monero-exporter"]
|