The docs say:
docker build [OPTIONS] PATH | URL | -
and
--file , -f Name of the Dockerfile (Default is 'PATH/Dockerfile')
so I'm using
docker build -t <my tag> -f /path/to/my/Dockerfile>
but I get:
"docker build" requires exactly 1 argument.
See 'docker build --help'.
Usage: docker build [OPTIONS] PATH | URL | -
How do the docs need correcting?