Erik Amundson
07/15/2021, 10:06 PMdocker buildx build --platform linux/amd64
. Is there any way to do this in the prefect.storage.docker.Docker
class or can I build the image locally first then add flows to a pre-built image?nicholas
build_kwarg
to the storage classnicholas
Docker(
...
build_kwargs=dict(platform='linux/amd64')
)
Erik Amundson
07/15/2021, 10:17 PMfailed to get destination image "xxx": image with reference xxx was found but does not match the specified platform: wanted linux/amd64, actual: linux/arm64
I think docker buildx
is separate from docker build
so docker build
doesn't recognize the kwarg platform
nicholas
nicholas
Erik Amundson
07/15/2021, 10:34 PMKevin Kho
Marvin
08/30/2021, 8:54 PM