Skip to content
Snippets Groups Projects
Dockerfile 490 B
Newer Older
Michael Bücker's avatar
Michael Bücker committed
FROM jupyter/datascience-notebook:hub-3.1.1
Peter Vennemann's avatar
Peter Vennemann committed

USER root

COPY requirements.txt environment.yml /tmp/
RUN conda env update -q -f /tmp/environment.yml && \
    /opt/conda/bin/pip install -r /tmp/requirements.txt && \
    conda clean -y --all && \
    conda env export -n "root" && \
    jupyter lab build 

COPY jupyter_notebook_config.py ${HOME}/.jupyter/

# copy dash app
COPY app ${HOME}/app/
RUN chown -R jovyan ${HOME}/app/
Julian's avatar
Julian committed
COPY client.py ${HOME}/
RUN chown -R jovyan ${HOME}/client.py