From b59dd4be732b91cfdd42162223fcd5f28dae7114 Mon Sep 17 00:00:00 2001 From: Manish Kumar Date: Sat, 12 Sep 2026 16:40:22 -0500 Subject: [PATCH] fix(build-multiarch): update stale Dockerfile.new entries to Dockerfile 9 of the 12 IMAGES table entries still pointed at Dockerfile.new, which none of those repos have had since their Dockerfile.new -> Dockerfile renames. The script's own existence check makes this fail loudly ("Dockerfile not found") rather than silently, but it meant ./scripts/build-multiarch.sh with no filter currently failed for 9 of 12 images. Verified each of the 9 affected repos (workflow-bundles, tool-images, tes, rag, dev-hub, model-registry, toolserver, lims, control-center) has a plain Dockerfile at its root and no Dockerfile.new, both before and immediately before this edit. videos/sdk/app entries already said Dockerfile and are untouched. Fixes #90 Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_0119F1kccNV19VuMnemXPcXL --- scripts/build-multiarch.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/scripts/build-multiarch.sh b/scripts/build-multiarch.sh index 9b97fd9b..3ab75d31 100755 --- a/scripts/build-multiarch.sh +++ b/scripts/build-multiarch.sh @@ -24,17 +24,17 @@ BASE="/home/manish/Desktop/machine" # Each entry: "short-name|repo-dir|dockerfile|image-tag" IMAGES=( - "workflow-bundles|omnibioai-workflow-bundles|Dockerfile.new|omnibioai-workflow-bundles:latest" - "tool-images|omnibioai-tool-images|Dockerfile.new|omnibioai-tool-images:latest" - "tes|omnibioai-tes|Dockerfile.new|omnibioai-tes:latest" - "rag|omnibioai-rag|Dockerfile.new|omnibioai-rag:latest" - "dev-hub|omnibioai-dev-hub|Dockerfile.new|omnibioai-dev-hub:latest" - "model-registry|omnibioai-model-registry|Dockerfile.new|omnibioai-model-registry:latest" - "toolserver|omnibioai-toolserver|Dockerfile.new|omnibioai-toolserver:latest" - "lims|omnibioai-lims|Dockerfile.new|omnibioai-lims:latest" + "workflow-bundles|omnibioai-workflow-bundles|Dockerfile|omnibioai-workflow-bundles:latest" + "tool-images|omnibioai-tool-images|Dockerfile|omnibioai-tool-images:latest" + "tes|omnibioai-tes|Dockerfile|omnibioai-tes:latest" + "rag|omnibioai-rag|Dockerfile|omnibioai-rag:latest" + "dev-hub|omnibioai-dev-hub|Dockerfile|omnibioai-dev-hub:latest" + "model-registry|omnibioai-model-registry|Dockerfile|omnibioai-model-registry:latest" + "toolserver|omnibioai-toolserver|Dockerfile|omnibioai-toolserver:latest" + "lims|omnibioai-lims|Dockerfile|omnibioai-lims:latest" "videos|omnibioai-videos|Dockerfile|omnibioai-videos:latest" "sdk|omnibioai_sdk|Dockerfile|omnibioai-sdk:latest" - "control-center|omnibioai-control-center|Dockerfile.new|omnibioai-control-center:latest" + "control-center|omnibioai-control-center|Dockerfile|omnibioai-control-center:latest" "app|omnibioai|Dockerfile|omnibioai-app:latest" )