Quando rodo o docker build recebo a mensagem acima e o retorno de tela abaixo, removendo os containers intermediarios. O que pode estar acontecendo? Já li instruções no stackoverflow mas me pareceu mais uma volta ao mundo resolver um problema que deve ser comum aos iniciantes em docker. A imagem é construiída mas sem os containers intermediários a partir do NPM INSTALL.
MacBook-Pro-de-PAULO:volume-exemplo PPERES$ docker build .
Sending build context to Docker daemon 10.24kB
Step 1/7 : FROM node:latest
---> aa3e171e4e95
Step 2/7 : MAINTAINER Paulo Peres
---> Using cache
---> 29a99935bcdc
Step 3/7 : COPY . /var/www
---> f6d6743d62b8
Step 4/7 : WORKDIR /var/www
Removing intermediate container ac5096feb899
---> ffa6a51de9ec
Step 5/7 : RUN npm install
---> Running in d1cb8b72a7d4
npm notice created a lockfile as package-lock.json. You should commit this file.
up to date in 0.135s
Removing intermediate container d1cb8b72a7d4
---> 0f049bc0f13e
Step 6/7 : ENTRYPOINT npm start
---> Running in ce620f10a399
Removing intermediate container ce620f10a399
---> 7bdafb9094c4
Step 7/7 : EXPOSE 3000
---> Running in 6ca2b1c00beb
Removing intermediate container 6ca2b1c00beb
---> afceb92cfe99
Successfully built afceb92cfe99
MacBook-Pro-de-PAULO:volume-exemplo PPERES$