0
respostas

Tracker "idealTree" already exists

root@mauricio-VirtualBox:/home/mauricio/Documentos/Alura/DockerAulas/volume-exemplo# docker build -f Dockerfile -t mauricio/node . Sending build context to Docker daemon 6.144kB Step 1/6 : FROM node:latest ---> c66552d59c4b Step 2/6 : COPY . /var/wwww ---> Using cache ---> c8284d288088 Step 3/6 : RUN npm install ---> Running in 438e7c39003b npm ERR! Tracker "idealTree" already exists

npm ERR! A complete log of this run can be found in: npm ERR! /root/.npm/logs/2021-08-26T1831_01_321Z-debug.log The command '/bin/sh -c npm install' returned a non-zero code: 1

FROM node

COPY . /var/wwww
WORKDIR /var/www
RUN npm install
ENTRYPOINT npm start
EXPOSE 3000

Estou recebendo este erro, e não estou conseguindo resolver