aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/udacity
diff options
context:
space:
mode:
authorGravatar Michał Jastrzębski <michal.jastrzebski@intel.com>2017-06-06 19:57:08 -0700
committerGravatar Jonathan Hseu <vomjom@vomjom.net>2017-06-06 19:57:08 -0700
commitd13ae380c365196389bcd4fbcc42f8ceb5f403e9 (patch)
tree990256c853cf5ac9ac62fc4873bd53b6494d6f32 /tensorflow/examples/udacity
parent8118ab4ec9b354dd598c2355d3a84f1275543adc (diff)
Fix CMD in Dockerfile (#10444)
Currently Notebook fails execution because default user for this container is root, and unless explicitly allowed, jupyter notebook will not start.
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 9f5ef1aca3..3d48ced41b 100644
--- a/tensorflow/examples/udacity/Dockerfile
+++ b/tensorflow/examples/udacity/Dockerfile
@@ -12,4 +12,4 @@ RUN pip install scikit-learn pyreadline Pillow
RUN rm -rf /notebooks/*
ADD *.ipynb /notebooks/
WORKDIR /notebooks
-CMD ["/run_jupyter.sh"]
+CMD ["/run_jupyter.sh", "--allow-root"]