Compare commits

...

2 Commits

Author SHA1 Message Date
renovate-bot
6f1246a203 Add renovate.json
Some checks failed
continuous-integration/drone/push Build is failing
2021-12-16 14:04:54 +00:00
be8a70d156
Extract dockerimage to replicate it
Some checks failed
continuous-integration/drone/push Build is failing
2021-12-16 15:04:31 +01:00
2 changed files with 14 additions and 1 deletions

View File

@ -2,6 +2,12 @@ name: Build Docker
kind: pipeline kind: pipeline
type: docker type: docker
steps: steps:
- name: Extract Tags
image: alpine
commands:
- cat Dockerfile | grep FROM | sed -r 's/FROM .*:(.*).*/\1,latest/' > .tags
- name: Build and Push docker - name: Build and Push docker
image: plugins/docker image: plugins/docker
settings: settings:
@ -11,7 +17,8 @@ steps:
from_secret: docker_password from_secret: docker_password
repo: harbor.sebclem.fr/sebclem/renovate repo: harbor.sebclem.fr/sebclem/renovate
registry: harbor.sebclem.fr registry: harbor.sebclem.fr
tags: slim
trigger: trigger:
event: event:
- push - push

6
renovate.json Normal file
View File

@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
]
}