https://github.com/unit8co/darts
Raw File
Tip revision: 65b85f5f5b23b62db90018f1067f7918235abe09 authored by Julien Herzen on 13 April 2022, 19:12:33 UTC
change github-tag-action version
Tip revision: 65b85f5
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