From eb8547ad9ff646d10f42687f8d1af582338c8884 Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Sivakumar Date: Fri, 12 Jun 2026 04:58:44 +0530 Subject: [PATCH] fix: update BASE_IMAGES to only include actual registry images - Keep: alpine (runtime), node (frontend), rust (backend builder) - Remove: busybox, golang, nginx (not used) - Remove: postgres, redis (used from Docker Hub, not registry) - Eliminates warning messages in cleanup logs --- apps/registry/retention-script.yaml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/apps/registry/retention-script.yaml b/apps/registry/retention-script.yaml index f4362ee..9d3ad5c 100644 --- a/apps/registry/retention-script.yaml +++ b/apps/registry/retention-script.yaml @@ -15,14 +15,11 @@ data: # (alpine for rust, node variants for frontend/admin, etc.). If any of # these are missing the entire build pipeline breaks. BASE_IMAGES = { - 'alpine', - 'node', - 'rust', - 'busybox', - 'golang', - 'nginx', - 'postgres', - 'redis', + 'alpine', # runtime base image + 'node', # frontend/admin builder + 'rust', # backend builder + # Note: postgres/redis are in docker-compose (Docker Hub), not in registry + # busybox/golang/nginx are not used } # Project-image prefix that we DO prune. Anything outside this is sacred. PROJECT_PREFIX = 'nxtgauge-'