+ essentials

This commit is contained in:
Anton Nesterov 2024-09-21 13:16:58 +02:00
parent 5b62981bab
commit 09ce693343

View file

@ -22,6 +22,11 @@ RUN deno jupyter --install
ENV JUPYTER_ENABLE_LAB=yes
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN pip install pandas\
&& pip install numpy\
&& pip install matplotlib\
&& pip install seaborn\
&& pip install scikit-learn\
&& pip install -r requirements.txt
CMD ["start-notebook.py", "--IdentityProvider.token=''"]