Docker: unable to prepare context: unable to evaluate symlinks in Dockerfile path: GetFileAttributesEx

后端 未结 30 2379
野性不改
野性不改 2020-11-29 21:23

I just downloaded Docker Toolbox for Windows 10 64bit today. I\'m going through the tutorial. I\'m receving the following error when trying to build an image using a Docke

30条回答
  •  感情败类
    2020-11-29 22:03

    To build Dockerfile save automated content in Dockerfile. not Dockerfile because while opening a file command:

    $ notepad Dockerfile 
    

    (A text file is written so file cannot build)

    To build file run:

    $ notepad Dockerfile
    

    and Now run:

    $ docker build -t docker-whale .
    

    Make sure you are in current directory of Dockerfile.

提交回复
热议问题