From c6c097778070d68f82e4f936b1a32fa47a671e89 Mon Sep 17 00:00:00 2001 From: Sylvain <1552102+sgaunet@users.noreply.github.com> Date: Sat, 12 Jul 2025 18:09:58 +0200 Subject: [PATCH 1/2] feat: update gitlab-backup image version to 1.11.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6641009..37e2b5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.22.0 AS alpine FROM ghcr.io/sgaunet/gocrypt:2.0.0 AS gocrypt -FROM sgaunet/gitlab-backup:1.10.0 AS gitlab-backup-image +FROM sgaunet/gitlab-backup:1.11.0 AS gitlab-backup-image FROM scratch LABEL org.opencontainers.image.authors="sgaunet" From 5ed5a3aeebe13f5c0b2faeff87465f9c68a02677 Mon Sep 17 00:00:00 2001 From: Sylvain <1552102+sgaunet@users.noreply.github.com> Date: Sat, 12 Jul 2025 18:13:35 +0200 Subject: [PATCH 2/2] fix: correct image reference for gitlab-backup in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 37e2b5c..30e2695 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.22.0 AS alpine FROM ghcr.io/sgaunet/gocrypt:2.0.0 AS gocrypt -FROM sgaunet/gitlab-backup:1.11.0 AS gitlab-backup-image +FROM ghcr.io/sgaunet/gitlab-backup:1.11.0 AS gitlab-backup-image FROM scratch LABEL org.opencontainers.image.authors="sgaunet"