From 7e1314b70362cbf28050f7081897921c57e9d369 Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 12:55:04 +0000 Subject: [PATCH] chore: improve renovate dependency detection --- Dockerfile | 4 ++-- renovate.json | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 renovate.json diff --git a/Dockerfile b/Dockerfile index c889ab7..d318dc4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ # syntax=docker.io/docker/dockerfile:1 -FROM "python:3.11-alpine" AS pipdependencies +FROM python:3.11-alpine AS pipdependencies COPY app/requirements.txt /requirements.txt RUN pip3 install --no-cache-dir --user --requirement requirements.txt -FROM "python:3.11-alpine" +FROM python:3.11-alpine LABEL maintainer="Cabillot Julien " # TODO: à tester diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..837008f --- /dev/null +++ b/renovate.json @@ -0,0 +1,14 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "regexManagers": [ + { + "description": "Track ntfy binary in COPY --from", + "fileMatch": ["^Dockerfile$"], + "matchStrings": [ + "COPY --from=binwiederhier/ntfy:(?[^\\s]+)" + ], + "depNameTemplate": "binwiederhier/ntfy", + "datasourceTemplate": "docker" + } + ] +} -- 2.52.0