https://github.com/unit8co/darts
Raw File
Tip revision: b30206f61840418a7a23c4d9e60f44852b04260b authored by dennisbader on 10 April 2023, 15:57:46 UTC
Merge branch 'master' into fix/ensemble-historical-forecasts
Tip revision: b30206f
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