Build fails when running in Circleci, but not locally. #2055
-
I have a build that works great locally, but fails in Circle. It's a multi-arch docker build using buildx. I have checked, and the experimental docker features are enabled, and the version is the same as on my machine. The odd part is that the build fails saying that I have attached the full output of the command. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It looks like buildx is not actually installed. The docker help is showing, because there is no buildx command in the help or known to docker. These days you can have buildx installed from Docker's own linux packages, but otherwise it needs to be installed: |
Beta Was this translation helpful? Give feedback.
It looks like buildx is not actually installed. The docker help is showing, because there is no buildx command in the help or known to docker.
These days you can have buildx installed from Docker's own linux packages, but otherwise it needs to be installed:
https://docs.docker.com/buildx/working-with-buildx/#install