I am trying to install getpapers via Docker in Windows 10 Pro. I have installed Docker desktop successfully.
For installing getpapers, I have created a Dockerfile with respective commands as below:

Then in command prompt, I gave the command docker build -t get_paper . but got the following output:
unable to prepare context: unable to evaluate symlinks in Dockerfile path: CreateFile C:\Users\laksm\OneDrive\Desktop\Dockerfile: The system cannot find the file specified.
I tried the command docker build -t get_paper -f Dockerfile . but got the same output:
unable to prepare context: unable to evaluate symlinks in Dockerfile path: CreateFile C:\Users\laksm\OneDrive\Desktop\Dockerfile: The system cannot find the file specified.
I created the Dockerfile in desktop and executed the command there.
Is there anything else should be done before using Dockerfile like switching to the Windows containers..? Kindly guide me.
I am trying to install getpapers via Docker in Windows 10 Pro. I have installed Docker desktop successfully.
For installing getpapers, I have created a
Dockerfilewith respective commands as below:Then in command prompt, I gave the command
docker build -t get_paper .but got the following output:I tried the command
docker build -t get_paper -f Dockerfile .but got the same output:I created the
Dockerfilein desktop and executed the command there.Is there anything else should be done before using Dockerfile like switching to the Windows containers..? Kindly guide me.