-1

Am trying to configure my dockerFile and am getting an error:

This is my docerfile:

FROM node:8.14.0-stretch 
MAINTAINER Wane <Vickywane@gmail.com>

EXPOSE 8080

RUN mkdir /app
WORKDIR /app

COPY package.json /app/package.json
RUN npm install 

COPY  . /app

CMD npm start

This is the error I am getting:

Building web
Step 1/9 : FROM node:8.14.0-stretch
8.14.0-stretch: Pulling from library/node
ERROR: Service 'web' failed to build: no matching manifest for unknown in the manifest list entries

Taher A. Ghaleb
  • 5,120
  • 5
  • 31
  • 44
iamnwani
  • 1
  • 1
  • 2
  • [Here](https://stackoverflow.com/questions/48066994/docker-no-matching-manifest-for-windows-amd64-in-the-manifest-list-entries/55751227#55751227) there is a complete discuss to solve those problems. – Filipe Luchini Apr 18 '19 at 17:46
  • Yes, this fixed the issue then. – iamnwani Nov 16 '20 at 11:05

1 Answers1

3

I had this same issue on Windows 10. I could continue following the next steps:

  • Right click Docker instance
  • Go to Settings
  • Daemon
  • Advanced
  • Set the experimental: true
  • This will restart Docker and let you continue pal.
ascripter
  • 5,665
  • 12
  • 45
  • 68
MhdDev
  • 46
  • 3