From ab562382499688420a7e7ce1440c6327ee789d8e Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 6 Sep 2025 23:44:48 +0000 Subject: [PATCH] docker: fix image annotations; docker buildx imagetools inspect copyparty/ac:beta@sha256:[...] --raw would show the annotations from the base alpine image instead of ours thx to @EmilyxFox for figuring this out! --- scripts/docker/make.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/docker/make.sh b/scripts/docker/make.sh index 88758c2a..13a4a4bb 100755 --- a/scripts/docker/make.sh +++ b/scripts/docker/make.sh @@ -102,12 +102,18 @@ filt= # arm takes forever so make it top priority [ ${a::3} == arm ] && nice= || nice=-n20 + # not sure if this is necessary or if inherit-annotations=false was enough, but won't hurt + readarray -t annot < <(awk > err; printf '%096d\n' $(seq 1 42))