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
While working on changes to the unstable Alpine build images as part of #1831 I encountered this warning output:
1 warning found (use docker --debug to expand):
InvalidBaseImagePlatform: Base image i386/golang:1.24rc1-alpine3.20 was pulled with platform "linux/386", expected "linux/amd64" for current build (line 10)
This is running on a linux/amd64 host, so presumably we just need to explicitly specify the platform value to match the platform we're already specifying in each Dockerfile.
atc0005
changed the title
InvalidBaseImagePlatform warning now emitted when building linux/386 images on linux/amd64 hostInvalidBaseImagePlatform warning now emitted when building linux/386 images on linux/amd64 host
Jan 16, 2025
Use `--platform` flag to explicitly specify applicable value
to match the one already specified in each Dockerfile.
This resolves the `InvalidBaseImagePlatform` warning emitted by
current versions of Docker.
refs GH-1852
Use `--platform` flag to explicitly specify applicable value
to match the one already specified in each Dockerfile.
This resolves the `InvalidBaseImagePlatform` warning emitted by
current versions of Docker.
refs GH-1852
While working on changes to the unstable Alpine build images as part of #1831 I encountered this warning output:
This is running on a linux/amd64 host, so presumably we just need to explicitly specify the platform value to match the platform we're already specifying in each Dockerfile.
See also:
The text was updated successfully, but these errors were encountered: