aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/udacity/Dockerfile
blob: 9f5ef1aca3e17afc1725459f72f894edae95967e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM gcr.io/tensorflow/tensorflow:latest
MAINTAINER Vincent Vanhoucke <vanhoucke@google.com>

# Pillow needs libjpeg by default as of 3.0.
RUN apt-get update && apt-get install -y --no-install-recommends \
        libjpeg8-dev \
        && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/*

RUN pip install scikit-learn pyreadline Pillow
RUN rm -rf /notebooks/*
ADD *.ipynb /notebooks/
WORKDIR /notebooks
CMD ["/run_jupyter.sh"]