I am trying to create a docker Image for tensforflow serving like here.
When i try to pull docker image with all the required dependencies(pip dependencies, bazel, grpc)
What am i doing wrong here? I believe it works for everyone except me. i am using docker toolbox in windows 7 and this is my first time using docker. I don't know what this error says
edit: after removing the space
Docker version
There is a typo in your docker build
command: a space is after Dockerfile
word.
The correct command is:
docker build --pull -t $USER/tensorflow-serving-devel -f tensorflow_serving/tools/docker/Dockerfile.devel .
EDIT:
I see where your problem is. You use Windows, so $USER
is not resolves to username. Please change it to something else like:
docker build --pull -t user/tensorflow-serving-devel -f tensorflow_serving/tools/docker/Dockerfile.devel .
And then use it with docker run
command:
docker run --name=tensorflow_container -it user/tensorflow-serving-devel
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With