diff options
author | Zach Koopmans <zkoopmans@google.com> | 2020-07-28 12:51:54 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-07-28 12:56:06 -0700 |
commit | 5873b0f43f5ff4d811f951baaacb7bbe8b1a486c (patch) | |
tree | 564e3300700900c47bd453ebc303e45c8ad19a4e /images | |
parent | 15d13e3398d519c48e9278889d7047a937f95d9c (diff) |
Port tensorflow benchmark.
PiperOrigin-RevId: 323633737
Diffstat (limited to 'images')
-rw-r--r-- | images/benchmarks/tensorflow/Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/images/benchmarks/tensorflow/Dockerfile b/images/benchmarks/tensorflow/Dockerfile new file mode 100644 index 000000000..7564a4ee5 --- /dev/null +++ b/images/benchmarks/tensorflow/Dockerfile @@ -0,0 +1,7 @@ +FROM tensorflow/tensorflow:1.13.2 + +RUN apt-get update \ + && apt-get install -y git +RUN git clone --depth 1 https://github.com/aymericdamien/TensorFlow-Examples.git +RUN python -m pip install -U pip setuptools +RUN python -m pip install matplotlib |