Add renovate and hadolint config

This commit is contained in:
Magnus Walbeck 2025-03-29 12:37:29 +01:00
parent 322fb62814
commit 6f92a07161
Signed by: mwalbeck
SSH key fingerprint: SHA256:LW2enW+zg6O/tGp+u4fVcpo+4Bn9y1qGj9SxUIBdK3s
3 changed files with 15 additions and 2 deletions

3
.hadolint.yaml Normal file
View file

@ -0,0 +1,3 @@
---
ignored:
- DL3018

View file

@ -1,4 +1,7 @@
FROM docker:27.5.1-dind
RUN apk add nodejs python3 py3-pip; \
pip install --break-system-packages determine-docker-tags;
# renovate: datasource=pypi depName=determine-docker-tags versioning=semver
ENV DETERMINE_DOCKER_TAGS_VERSION 0.2.6
RUN apk --no-cache add nodejs python3 py3-pip; \
pip install --no-cache-dir --break-system-packages determine-docker-tags=="${DETERMINE_DOCKER_TAGS_VERSION}";

7
renovate.json Normal file
View file

@ -0,0 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>walbeck-it/renovate-config",
"local>walbeck-it/renovate-config:docker"
]
}