Hi,
with the last version (v0.4.0) there is a problem with the build command when I use it whith --pull arg, I guess that there is command parsing problem:
docker buildx build --target dev --tag my_tag --pull --load .
invalid argument "--load" for "--pull" flag: strconv.ParseBool: parsing "--load": invalid syntax
If I had true just after --pull arg it works:
docker buildx build --target dev --tag my_tag --pull true --load .
Hi,
with the last version (v0.4.0) there is a problem with the build command when I use it whith --pull arg, I guess that there is command parsing problem:
If I had
truejust after--pullarg it works: