Compare commits

..

3 Commits

Author SHA1 Message Date
CSRBot 9608e8d325 chore(deps): update docker.io/plugins/docker docker tag to v20.17.1
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
2023-12-09 14:04:01 +00:00
Markus Pesch 5e1c365205
fix: update Dockerfile
continuous-integration/drone/push Build is passing Details
2023-12-09 15:00:42 +01:00
Markus Pesch 98773b9fab
fix(renovate): update configuration
continuous-integration/drone/push Build is failing Details
2023-12-09 14:47:11 +01:00
2 changed files with 32 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM docker.io/library/golang:1.17-alpine3.13 AS build
FROM docker.io/library/golang:1.21.4-alpine3.18 AS build
ARG VERSION=latest
@ -11,7 +11,15 @@ RUN set -ex && \
apk add git make && \
make install VERSION=${VERSION} DESTDIR=/db-wait PREFIX=/usr
FROM docker.io/library/alpine:3.18
FROM docker.io/library/alpine:3.19
LABEL org.opencontainers.image.authors="Markus Pesch" \
org.opencontainers.image.description="Wait until database is ready for handling connections" \
org.opencontainers.image.documentation="https://git.cryptic.systems/volker.raschek/db-wait#db-wait" \
org.opencontainers.image.source="https://git.cryptic.systems/volker.raschek/db-wait" \
org.opencontainers.image.title="db-wait" \
org.opencontainers.image.url="https://git.cryptic.systems/volker.raschek/db-wait" \
org.opencontainers.image.vendor="Markus Pesch"
COPY --from=build /db-wait /

View File

@ -5,6 +5,20 @@
"automergeType": "pr",
"labels": [ "renovate" ],
"packageRules": [
{
"description": "Automatically update minor and patch versions of container images",
"addLabels": [ "renovate/container-images", "renovate/automerge" ],
"automerge": true,
"matchDatasources":[ "docker" ],
"matchUpdateTypes": [ "minor", "patch"]
},
{
"description": "Prepare MR for major update of container images",
"addLabels": [ "renovate/container-images", "renovate/automerge" ],
"automerge": false,
"matchDatasources":[ "docker" ],
"matchUpdateTypes": [ "major"]
},
{
"description": "Automatically update minor and patch versions of used drone-ci images",
"addLabels": [ "renovate/droneci", "renovate/automerge" ],
@ -12,6 +26,13 @@
"matchManagers": "droneci",
"matchUpdateTypes": [ "minor", "patch"]
},
{
"description": "Prepare MR for major update of used drone-ci images",
"addLabels": [ "renovate/droneci", "renovate/automerge" ],
"automerge": false,
"matchManagers": "droneci",
"matchUpdateTypes": [ "major"]
},
{
"description": "Automatically update minor and patch versions of go modules",
"addLabels": [ "renovate/gomod", "renovate/automerge" ],
@ -21,7 +42,7 @@
"matchUpdateTypes": [ "minor", "patch" ]
},
{
"description": "Prepare MR for major update minor of go modules",
"description": "Prepare MR for major update of go modules",
"addLabels": [ "renovate/gomod" ],
"automerge": false,
"matchBaseBranches": [ "master" ],