Не получается создать Docker image, все ломается на команде npm install. Что нужно исправить?
У меня вот такой Dockerfile
FROM node:14
WORKDIR /app
COPY . /app
RUN npm install
EXPOSE 80
CMD ["node", "serve.js"]
запускаю docker build . и меня такие ошибки
Step 4/6 : RUN npm install
---> Running in a4a354d8f1ce
npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN docker-complete@1.0.0 No description
npm WARN docker-complete@1.0.0 No repository field.
added 50 packages from 37 contributors and audited 51 packages in 2.486s
found 0 vulnerabilities
The command '/bin/sh -c npm install' returned a non-zero code: 4294967295: failed to shutdown container: container a4a354d8f1ce7a192cbbe03674b7f2806e49dffcdaaeb07de534f6cb39204890 encountered an error during hcsshim::System::waitBackground: failure in a Windows system call: The virtual machine or container with the specified identifier is not running. (0xc0370110): subsequent terminate failed container a4a354d8f1ce7a192cbbe03674b7f2806e49dffcdaaeb07de534f6cb39204890 encountered an error during hcsshim::System::waitBackground: failure in
a Windows system call: The virtual machine or container with the specified identifier is not running. (0xc0370110)