From 968fe6336790efe71eb981b46877965713b08cfa Mon Sep 17 00:00:00 2001 From: Will Szumski Date: Fri, 28 Apr 2023 14:35:46 +0100 Subject: [PATCH] Revert back to upstream exporter --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1ac9f52..9e615c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM golang:alpine as builder RUN apk add --no-cache git -RUN git clone https://github.com/jovial/redfish_exporter /build && cd /build && git checkout feature/log_counts +RUN git clone https://github.com/jenningsloy318/redfish_exporter.git /build && cd /build && git checkout e28371ddb8606720b26290df1ee258e350d0f7dd WORKDIR /build RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -o main . FROM scratch