3 Commits

Author SHA1 Message Date
renovate 69460d1019 Migrate config renovate.json
Docker Build and Push / build (pull_request) Failing after 1m6s
2026-06-10 23:03:47 +00:00
opencodecabilloteu 18fa56a236 Merge pull request 'chore: fix Dockerfile quotes, add TINI_VERSION regex manager' (#3) from chore/renovate into master
Docker Build and Push / build (push) Failing after 1m10s
Reviewed-on: #3
2026-06-10 18:54:20 -04:00
opencodecabilloteu b9a9f608df chore: fix Dockerfile FROM quotes, gitlabci image quotes, add TINI_VERSION regex manager
Docker Build and Push / build (pull_request) Failing after 1m5s
2026-06-09 02:17:23 +00:00
3 changed files with 19 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
image: "docker:latest"
image: docker:latest
services:
- "docker:dind"
+1 -1
View File
@@ -1,4 +1,4 @@
FROM "ubuntu:18.04"
FROM ubuntu:18.04
# Il n'est pas possible d'utiliser alpine,
# cela pose problème avec le script de post-install qui dépends vraiment de glibc.
# Il faudrait alors partir sur une full recompilation de calibre (sans certitudes sur le bon fonctionnement).
+17
View File
@@ -0,0 +1,17 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"gitlabci": {
"enabled": true
},
"customManagers": [
{
"customType": "regex",
"description": "Track Tini version from ENV-based ADD download URL",
"managerFilePatterns": ["/^Dockerfile$/"],
"matchStrings": ["TINI_VERSION\\s+\"(?<currentValue>[^\"]+)\""],
"depNameTemplate": "krallin/tini",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
}
]
}