invalid reference format for aurora-dx
I get this only when running locally. I've tried version
v0.9.5
and also v0.9.7
8 Replies
Is this the version from cargo? I believe this or a related issue was fixed already. https://github.com/blue-build/cli/issues/339
Though that fix should already be present in
v0.9.7
...
@Luke Skywunker might be able to helpI cloned from git, checked out the
v0.9.7
tag, and then cargo build --locked --release
bluebuild build -vv
output:
This is something different from that issue
This appears to be around pulling the image for docker to run it and find the version if the version in the label is an invalid format
It does a check to see if you already have the image pulled so that it will remove the image after its check is done to save space
This is because the docker build uses
buildx
to build your image and it doesn't have access to the local docker registry which would cause duplicated images which take up space
@Doug if you run docker images --format json
, do you have anything print out?
Does the command fail at all?it does print, and does not fail
Ok, I'm going to push a small commit to main that should add more context for the error you're running into
Can you install it and try again using
cargo install --git https://github.com/blue-build/cli.git --locked
?
And put the error you get here
Or I guess you already have it checked out, so build what's on main
either wayAha!
Alright, I'll be sure to take
<none>
into account
Ok, pushed a fix out to main
. Mind building and trying once more to see if that fixed it?
I'm running some tests myself, but I have to get some untagged images in my local registry first
Seems to work for meyes, it's working for me as well