From ef79ca2e9a1b066b5de3005135b03b05e3487a00 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Tue, 21 Apr 2026 07:58:46 -0400 Subject: [PATCH] fix: use alpine/git for init container instead of bitnami/git Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/api/src/services/job-builder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/services/job-builder.ts b/apps/api/src/services/job-builder.ts index 7ef5955..ff641b4 100644 --- a/apps/api/src/services/job-builder.ts +++ b/apps/api/src/services/job-builder.ts @@ -71,7 +71,7 @@ export function buildJobSpec(params: JobParams): k8s.V1Job { initContainers.push({ name: 'git-clone', - image: 'bitnami/git:2', + image: 'alpine/git:latest', command: ['git'], args: cloneArgs, volumeMounts: [{ name: 'repo', mountPath: REPO_MOUNT_PATH }],