I have a Dockerfile set up in my root (~) folder. The first three lines of my file look like this:
COPY file1 /root/folder/
COPY file2 /root/folder/
COPY file3 /root/folder/
but it returns the following error for each line:
No such file or directory
The files are in the same directory as my Dockerfile and I am running the command docker build - < Dockerfile in the same directory in terminal as well.
What am I doing wrong here exactly?
RUN echo "npm run start;" >> /docker-entrypoint.d/40-npm-start.shgithub.com/moby/moby/issues/32816#issuecomment-910030001