This directory contains Dockerfiles to make it easy to get up and running with TensorFlow Serving via Docker.
General installation instructions are on the Docker site, but we give some quick links here:
We currently maintain the following Dockerfiles:
Dockerfile.devel, which is a minimal VM with all of the dependencies needed to build TensorFlow Serving.
run;
docker build --pull -t $USER/tensorflow-serving-devel -f Dockerfile.devel .This assumes you have built the container.
Dockerfile.devel: Use the development container to clone and test the
TensorFlow Serving repository.
Run the container;
docker run -it $USER/tensorflow-serving-develClone, configure and test Tensorflow Serving in the running container;
git clone --recurse-submodules https://github.com/tensorflow/serving
cd serving/tensorflow
./configure
cd ..
bazel test tensorflow_serving/...