File tree Expand file tree Collapse file tree 3 files changed +15
-12
lines changed
Expand file tree Collapse file tree 3 files changed +15
-12
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ ARG TARGETARCH
44
55RUN apk add --no-cache --virtual mytools rsync curl jq ca-certificates sqlite && rm -rf /var/cache/apk/*
66
7+ # renovate: datasource=github-releases depName=regclient/regclient
78ARG REGCLIENT_VERSION=0.9.0
89RUN curl -o /usr/local/bin/regctl --fail -sSL https://github.com/regclient/regclient/releases/download/v${REGCLIENT_VERSION}/regctl-${TARGETOS}-${TARGETARCH} && \
910 chmod a+x /usr/local/bin/regctl && \
Original file line number Diff line number Diff line change 22 "$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
33 "extends" : [
44 " config:recommended"
5- ]
5+ ],
6+ "customManagers" : [
7+ {
8+ "customType" : " regex" ,
9+ "description" : " Update version ARGs in Dockerfile" ,
10+ "managerFilePatterns" : [
11+ " /^Dockerfile$/"
12+ ],
13+ "matchStrings" : [
14+ " #\\ s*renovate:\\ s*datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\ sARG.*_VERSION=\" ?(?<currentValue>.*)\" ?\\ s"
15+ ],
16+ "versioningTemplate" : " {{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
17+ }
18+ ]
619}
You can’t perform that action at this time.
0 commit comments