You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(docker): use fixed-length git short hash (9 chars) in image tags
git rev-parse --short without an explicit length produces a
variable-length hash depending on the local object database. This
caused inconsistent Docker image tags between ARM and AMD64 builds
(e.g. 2a34266 vs 2a34266), breaking multi-arch manifest pushes.
Pin to --short=9 in all tag-construction sites for consistency.
Copy file name to clipboardExpand all lines: src/docker/itk-wasm/build.sh
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -16,8 +16,8 @@ $cp_exe -a ../../../src/emscripten-module ./ITKWebAssemblyInterfaceModuleCopy/sr
16
16
mkdir -p median-filter-pipelineCopy
17
17
$cp_exe -a ../../../packages/core/typescript/itk-wasm/test/pipelines/median-filter-pipeline/{CMakeLists.txt,median-filter-test.cxx} ./median-filter-pipelineCopy
0 commit comments