https://github.com/unit8co/darts
Raw File
Tip revision: 78ba7d452a84752f9e9573e410e351e998d97669 authored by Julien Herzen on 28 November 2021, 09:27:39 UTC
update readme
Tip revision: 78ba7d4
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