From b2cc45749e123b94f5707f02310118efea19a505 Mon Sep 17 00:00:00 2001 From: Andreas Schmid Date: Mon, 20 Jul 2020 21:57:35 +0200 Subject: [PATCH] adjust Dockerfile in order to fit the repo Signed-off-by: Andreas Schmid --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9de9975..7d864ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,8 @@ LABEL maintainer="Max Schmitt " LABEL maintainer="Andreas Schmid " LABEL description="FRITZ!Box Prometheus exporter" -RUN go get -v github.com/aaschmid/fritzbox_exporter && \ - cd /go/src/github.com/aaschmid/fritzbox_exporter && \ +RUN go get -v github.com/sberk24/fritzbox_exporter && \ + cd /go/src/github.com/sberk24/fritzbox_exporter && \ CGO_ENABLED=0 go build -v -o /exporter @@ -13,7 +13,7 @@ FROM alpine RUN apk update && apk add ca-certificates -COPY --from=build-env /go/src/github.com/aaschmid/fritzbox_exporter/metrics.json /metrics.json +COPY --from=build-env /go/src/github.com/sberk24/fritzbox_exporter/metrics.json /metrics.json COPY --from=build-env /exporter / EXPOSE 9133