Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Job failed: failed to pull image "node:latest" with specified policies [always]: no matching manifest for windows/amd64 10.0.17763

I am using Gitlab CI in windows as base image.

image: mcr.microsoft.com/dotnet/sdk:6.0.202-windowsservercore-ltsc2019
..................................
app_build:
  stage: build
  only: 
    - Dev
  image: node:latest
  tags:
    - my-tag
  script:
    - |
      cd Receipt

      npm install

      npm run build --prod

WARNING: Failed to pull image with policy "always": no matching manifest for windows/amd64 10.0.17763 in the manifest list entries (manager.go:237:1s) ERROR: Job failed: failed to pull image "node:latest" with specified policies [always]: no matching manifest for windows/amd64 10.0.17763 in the manifest list entries (manager.go:237:1s)

like image 358
Imran Qadir Baksh - Baloch Avatar asked Jan 01 '26 20:01

Imran Qadir Baksh - Baloch


1 Answers

The official NodeJS docker image only publishes Linux containers. There are no available images for Windows OS in any architecture.

You will have to either use a different image built for Windows or enable Linux container virtualization on your host ("switch to linux containers") -- but keep in mind you won't be able to pull Windows images while the daemon is configured for Linux containers.

See also this answer for additional context.

like image 116
sytech Avatar answered Jan 04 '26 01:01

sytech



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!