aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/udacity/Dockerfile
blob: 00eb853e527c922121fae6dc5eab42c589b0b238 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM gcr.io/tensorflow/tensorflow:latest
LABEL 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 imageio
RUN rm -rf /notebooks/*
ADD *.ipynb /notebooks/
WORKDIR /notebooks
CMD ["/run_jupyter.sh", "--allow-root"]