https://github.com/unit8co/darts
Raw File
Tip revision: c97ba985ee59e50c5674470e8763ab8d8cb4acfe authored by Julien Herzen on 18 August 2021, 20:20:36 UTC
Remove memory pinning
Tip revision: c97ba98
Dockerfile
FROM jupyter/base-notebook:python-3.9.5

RUN conda update --all -y --quiet \
 && conda install -c conda-forge ipywidgets -y --quiet \
 && conda clean --all -f -y

USER root

# to build pystan
RUN apt-get update \
 && apt-get -y install build-essential \
 && apt-get clean && rm -rf /var/lib/apt/lists/*

USER $NB_USER

ADD . /home/jovyan/work

WORKDIR /home/jovyan/work

RUN pip install .
back to top