Expected behavior
$docker build -t hellonode .
Docker Build builds the container
Actual behavior
I get an error
Error response from daemon: Cannot locate specified Dockerfile: Dockerfile
Information
Contents of DockerFile
FROM node:4.2.3
EXPOSE 3000
COPY . /app
WORKDIR /app
RUN cd /app; npm install
CMD [“npm”,“start”]
Steps to reproduce the behavior
$docker build -t hellonode .
$Error response from daemon: Cannot locate specified Dockerfile: Dockerfile