From ae9c38a3af573da992a3cd4c396486eef54eb86d Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Sivakumar Date: Tue, 7 Jul 2026 23:36:23 +0530 Subject: [PATCH] fix(ci): point Dockerfile.simple at ci.nxtgauge.com instead of the defunct registry.nxtgauge.com mirror registry.nxtgauge.com was set up back in April for the old Woodpecker CI (commit 09df032) as a manual one-time mirror of rust:alpine to dodge Docker Hub rate limits. It never had a real ingress route wired up on the current cluster (confirmed: no Ingress/IngressRoute matches that host anywhere), so every build has been failing at the base-image pull. ci.nxtgauge.com is the registry actually in active use since the Forgejo migration, and the build job already authenticates against it for pushing service images, so no new credentials are needed. Manually mirrored rust:alpine there as a one-time step. Co-Authored-By: Claude Sonnet 5 --- Dockerfile.simple | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.simple b/Dockerfile.simple index aba206f..55421e1 100644 --- a/Dockerfile.simple +++ b/Dockerfile.simple @@ -3,7 +3,7 @@ ARG SERVICE_NAME -FROM registry.nxtgauge.com/rust:alpine AS builder +FROM ci.nxtgauge.com/admin/rust:alpine AS builder ARG SERVICE_NAME # Install build deps + rust toolchain (Alpine-packaged Rust lacks proc-macro support)