You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When performing a build step such as this example:
FROM --platform=$BUILDPLATFORM AS hello
RUN echo hello; sleep 10
And then building for multiple target platforms, it is difficult to tell which platform target is running or failed because the output effectively shows BUILDPLATFORM (in this case).
Example from above might look like this even though I'm building for both linux/amd64 and linux/arm64, both only show linux/amd64:
Showing linux/amd64 in there is correct as the hello/sleep binary running there is linux/amd64 but as it is confusing we could detect the case where TARGETPLATFORM for Dockerfile stage is not the same as current platform and show both then.
When performing a build step such as this example:
And then building for multiple target platforms, it is difficult to tell which platform target is running or failed because the output effectively shows
BUILDPLATFORM
(in this case).Example from above might look like this even though I'm building for both linux/amd64 and linux/arm64, both only show
linux/amd64
:The text was updated successfully, but these errors were encountered: