I am attempting to build and push an image using buildx.
docker buildx build \
--platform linux/amd64,linux/arm/v7 \
--output "type=image,push=true" \
--tag $IMAGE_ID:$VERSION \
--file Dockerfile .
The image appears to build fine but then I get this:
#42 ERROR: failed commit on ref "layer-sha256:841c5dec2f918bb9cfb333e0ffaf1aee4ce2b2d6f8b8dba0dccb9a7059ff23de": invalid content digest in response: invalid checksum digest format
I can build and push a standard image with no issues.
I do see what appears to be a failed attempt to publish a package but I have no way of deleting it.