aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/udacity
diff options
context:
space:
mode:
authorGravatar Ashish Kumar Ram <ashish.ram88@gmail.com>2018-01-26 00:31:25 +0100
committerGravatar Rasmus Munk Larsen <rmlarsen@google.com>2018-01-25 15:31:25 -0800
commit11905a5da2785dba666c23762bd82c1f0f9d583b (patch)
tree335340b5f65668464abe091676248c7358abe382 /tensorflow/examples/udacity
parent119b993e00a2a138d1ef2f4886e39ca528bad1c3 (diff)
Add missing library in Dockerfile (#16417)
The local Dockerfile does not have all the dependencies for running the exercise notebooks in udacity assignments.
Diffstat (limited to 'tensorflow/examples/udacity')
-rw-r--r--tensorflow/examples/udacity/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/examples/udacity/Dockerfile b/tensorflow/examples/udacity/Dockerfile
index 3ca58566c1..00eb853e52 100644
--- a/tensorflow/examples/udacity/Dockerfile
+++ b/tensorflow/examples/udacity/Dockerfile
@@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
-RUN pip install scikit-learn pyreadline Pillow
+RUN pip install scikit-learn pyreadline Pillow imageio
RUN rm -rf /notebooks/*
ADD *.ipynb /notebooks/
WORKDIR /notebooks