-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDockerfile
More file actions
37 lines (28 loc) · 712 Bytes
/
Dockerfile
File metadata and controls
37 lines (28 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FROM tensorflow/tensorflow:2.0.0-py3-jupyter
MAINTAINER oliver duerr <oliver.duerr@zhaw.ch>
RUN pip3 --no-cache-dir install \
ipykernel \
matplotlib \
pandas \
h5py \
scikit-image \
seaborn \
sklearn \
tensorflow-probability==0.8.0\
tqdm
# For toc in notebook
RUN pip3 install jupyter_contrib_nbextensions
RUN jupyter contrib nbextension install --user
RUN pip3 install jupyter_nbextensions_configurator
# Clean
RUN apt-get clean && \
rm -rf /var/lib/apt/lists/*
# TensorBoard
EXPOSE 6006
# IPython
EXPOSE 8888
WORKDIR "/notebooks"
ADD ./run_jlab.sh /
ADD ./run_jupyter_2.sh /
#COPY notebooks /notebooks
CMD ["/run_jupyter_2.sh"]