Skip to content

Commit eac314b

Browse files
grooverdanRazvanLiviuVarzaru
authored andcommitted
docker library: arch match against amd64 incorrect for tagging wordpress
1 parent 9aafbf6 commit eac314b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/docker-library-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ buildah manifest create "$image"
181181
for arch in "${arches[@]}"; do
182182
build "$arch"
183183
buildah manifest add "$image" "$image-$arch"
184-
if [ "$arch" = amd64 ]; then
184+
if [ "$arch" = linux/amd64 ]; then
185185
buildah tag "${image}-${arch}" "${image}-wordpress"
186186
fi
187187
done

0 commit comments

Comments
 (0)