From 87eca3d8f7f949a7f30cc153124797e77713f006 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 9 Jan 2026 17:59:04 +0000 Subject: [PATCH] Update dependency regclient/regclient to v0.11.1 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 859dcb4..65040fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG TARGETARCH RUN apk add --no-cache --virtual mytools rsync curl jq ca-certificates sqlite && rm -rf /var/cache/apk/* #renovate: datasource=github-releases depName=regclient/regclient -ARG REGCLIENT_VERSION=0.9.0 +ARG REGCLIENT_VERSION=0.11.1 RUN curl -o /usr/local/bin/regctl --fail -sSL https://github.com/regclient/regclient/releases/download/v${REGCLIENT_VERSION}/regctl-${TARGETOS}-${TARGETARCH} && \ chmod a+x /usr/local/bin/regctl && \ curl -o /usr/local/bin/regsync --fail -sSL https://github.com/regclient/regclient/releases/download/v${REGCLIENT_VERSION}/regsync-${TARGETOS}-${TARGETARCH} && \