Skip to content

Conversation

Copy link

Copilot AI commented Oct 28, 2025

Docker builds were failing with "no match for platform in manifest" because the workflow attempted to build for linux/arm/v7 and linux/arm/v8, which are not supported by node:24.10.0-bullseye-slim.

Changes

  • Removed linux/arm/v7 (32-bit ARM, unsupported by Node.js 24.x images)
  • Removed linux/arm/v8 (incorrect notation, duplicate of linux/arm64)
  • Retained linux/amd64 and linux/arm64 which are supported by both base images

The workflow now builds only for platforms available in the Node.js Docker images:

matrix:
  include:
    - dockerfile: Dockerfile.alpine
      platform: linux/amd64
    - dockerfile: Dockerfile
      platform: linux/arm64
Original prompt

My Docker pipeline is failing with:

Dockerfile:1
--------------------
   1 | >>> FROM node:24.10.0-bullseye-slim AS builder
   2 |     RUN corepack enable
   3 |     
--------------------
ERROR: failed to build: failed to solve: node:24.10.0-bullseye-slim: failed to resolve source metadata for docker.io/library/node:24.10.0-bullseye-slim: no match for platform in manifest: not found
Reference
  builder-265fecaf-42da-4f08-a0a6-7059abdb2f9f/builder-265fecaf-42da-4f08-a0a6-7059abdb2f9f0/vjw511uvs5wqseeyrrfeakd5b
Check build summary support
Error: buildx failed with: ERROR: failed to build: failed to solve: node:24.10.0-bullseye-slim: failed to resolve source metadata for docker.io/library/node:24.10.0-bullseye-slim: no match for platform in manifest: not found

Please identify the root cause and address it.


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Copilot AI changed the title [WIP] Fix Docker pipeline error with node image Fix Docker build failure: remove unsupported ARM platform variants Oct 28, 2025
Copilot AI requested a review from eliandoran October 28, 2025 19:01
Copilot finished work on behalf of eliandoran October 28, 2025 19:01
@eliandoran eliandoran closed this Nov 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants