-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Dockerfile
40 lines (31 loc) · 1.02 KB
/
Dockerfile
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
38
39
40
FROM wqael/mldock:pytorch1.3-conda3-cuda92
LABEL description="Jupyter / PyTorch 1.3 / Conda 3 / nvidia/cuda:9.2-cudnn7-runtime-ubuntu16.04" \
maintainer="https://github.com/rlan/notebooks"
# Build-time metadata as defined at http://label-schema.org
ARG BUILD_DATE
ARG VCS_REF
ARG VERSION
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url="https://github.com/rlan/notebooks" \
org.label-schema.version=$VERSION \
org.label-schema.schema-version="1.0"
RUN conda install --quiet \
jupyterlab \
matplotlib \
opencv \
pillow \
scikit-learn \
scikit-image \
seaborn \
&& conda clean -aqy
# Set up our notebook config.
COPY jupyter_notebook_config.py /root/.jupyter/
# Jupyter has issues with being run directly:
# https://github.com/ipython/ipython/issues/7062
# We just add a little wrapper script.
COPY run_jupyter.sh /
# IPython
EXPOSE 8888
WORKDIR /notebooks
CMD ["/run_jupyter.sh", "--allow-root"]