From eb0f36d314007bbc32ce8fa1a4ff6d92249d62c9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 6 Mar 2021 16:02:19 +0000 Subject: [PATCH 1/2] Add renovate.json (#2) Co-authored-by: Renovate Bot --- renovate.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..f45d8f1 --- /dev/null +++ b/renovate.json @@ -0,0 +1,5 @@ +{ + "extends": [ + "config:base" + ] +} From 73c6eae26a0a060d6451a40715d4642d94c97732 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Sat, 6 Mar 2021 17:52:31 +0000 Subject: [PATCH 2/2] Add repo URL to Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index d241d8b..319db8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,5 +5,6 @@ RUN CGO_ENABLED=0 go build -o /go/bin/app FROM gcr.io/distroless/base-debian10 LABEL maintainer="Luke Tainton " +LABEL org.opencontainers.image.source="https://github.com/luketainton/iPilot" COPY --from=build /go/bin/app / CMD ["/app"]