estou tendo o seguinte erro ao fazer a build do meu Dockerfile
unable to prepare context: unable to evaluate symlinks in Dockerfile path: GetFileAttributesEx C:\Users\rsilva\Documents\docker\volume-exemplo\Dockerfile: The system cannot find the file specified.
Estou rodando o comando assim
docker build -t renato/node .
E meu dockerfile é o seguinte
FROM node:latest
MAINTAINER Renato Reboucas
WORKDIR /var/www
COPY . /var/www
# quando o containner carregar vai ser na pasta asseguir
RUN npm install
ENTRYPOINT npm start
#porta que ele vai ultilizar
EXPOSE 3000