From 095eabbd4b662835026ceb93137a506c2f15161b Mon Sep 17 00:00:00 2001 From: Mathias Schwarzhans Date: Mon, 24 Jan 2022 11:38:13 +0100 Subject: [PATCH 1/2] Added jobs for caching python-3.10.2-slim and gradle-alpine images. --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4c448d8..b05f12f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -123,3 +123,15 @@ sync-dotnet-aspnet-5-0: variables: FROM: mcr.microsoft.com/dotnet/aspnet:5.0 TO: dotnet-aspnet-5-0 + +sync-gradle-alpine: + extends: .mirror-base + variables: + FROM: gradle:alpine + TO: gradle-alpine + +sync-python-3-10-2-slim: + extends: .mirror-base + variables: + FROM: python:3.10.2-slim + TO: python-3-10-2-slim -- GitLab From d797f8d47eb302f45d133230a4d7d8546df02969 Mon Sep 17 00:00:00 2001 From: Mathias Schwarzhans Date: Mon, 24 Jan 2022 11:43:37 +0100 Subject: [PATCH 2/2] Updated README.md with removal notice for gradle-alpine and python 3.10.2-slim --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f1810c3..3c90801 100644 --- a/README.md +++ b/README.md @@ -46,3 +46,5 @@ A simple debian based maven installation. |registry.reset.inso-w.at/pub/docker/posgres-14-alpine | postgres:14.1-alpine | will be removed at 2022-03-01 | |registry.reset.inso-w.at/pub/docker/openjdk-17-jdk-alpine | openjdk:17-jdk-alpine | will be removed at 2022-03-01 | |registry.reset.inso-w.at/pub/docker/eclipse-temurin | eclipse-temurin:17 | will be updated to the current LTS version of the jdk and kept indefinitely | +|registry.reset.inso-w.at/pub/docker/gradle-alpine | gradle:alpine | will be removed at 2022-03-01 | +|registry.reset.inso-w.at/pub/docker/python-3-10-2-slim | python:3.10.2-slim | will be removed at 2022-03-01 | -- GitLab