https://github.com/unit8co/darts
Raw File
Tip revision: 5f204ee8c4dad745b7490c371e530df4ebea6f98 authored by Julien Herzen on 16 October 2021, 07:44:24 UTC
resolved issues in concatenate()
Tip revision: 5f204ee
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