Merge pull request 'chore: improve renovate dependency detection' (#7) from chore/renovate into master
Docker Build and Push / build (push) Successful in 2m32s

Reviewed-on: #7
This commit was merged in pull request #7.
This commit is contained in:
2026-06-09 14:04:04 -04:00
2 changed files with 16 additions and 2 deletions
+2 -2
View File
@@ -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 <dockerimages@cabillot.eu>"
# TODO: à tester
+14
View File
@@ -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:(?<currentValue>[^\\s]+)"
],
"depNameTemplate": "binwiederhier/ntfy",
"datasourceTemplate": "docker"
}
]
}