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
The error means that docker build
is either using a PATH | URL
that are incorrectly input or that the Dockerfile
cannot be found in the current directory. Also, make sure that when running the command from an integrated terminal (e.g. bash
inside your IDE or text editor) you have the admin permissions to do so.
Best if you can check the PATH
from your terminal with pwd
(in bash shell
or dir
if using a simple cli
on windows) and copy the exact path where you want the image to be build.
docker build C:\windows\your_amazing_directory
docker build --help
will also show you available options to use in case of malformed or illegal commands.