From 9fe54637f2f0cfd298b740459f50d2eba5880594 Mon Sep 17 00:00:00 2001 From: Daniel Chudnov Date: Wed, 30 Jun 2021 16:35:28 -0400 Subject: [PATCH 1/2] Simplified Dockerfile to use scipy-notebook instead of minimal-notebook; reduces requirements for GrowthViz, refs #31 --- Dockerfile | 4 ++-- requirements.txt | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index aefa593..9b6bcdc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM jupyter/minimal-notebook +FROM jupyter/scipy-notebook LABEL maintainer="Robi Scalfani " @@ -23,4 +23,4 @@ RUN jupyter nbextension enable --py --sys-prefix qgrid # Switch back to regular user USER jovyan -CMD jupyter notebook \ No newline at end of file +CMD jupyter notebook diff --git a/requirements.txt b/requirements.txt index c8fe351..2cd4fd8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1 @@ -ipywidgets -matplotlib>=3.3.4 -pandas>=1.2.2 qgrid>=1.3.1 -seaborn>=0.11.1 From 5789cced37a2e29a4e55bc269ea2186903624901 Mon Sep 17 00:00:00 2001 From: Daniel Chudnov Date: Wed, 30 Jun 2021 16:41:39 -0400 Subject: [PATCH 2/2] Reverted requirements, accidentally removed previously, refs #31 --- requirements.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/requirements.txt b/requirements.txt index 2cd4fd8..d828c1f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,5 @@ +ipywidgets +matplotlib>=3.3.4 +pandas>=1.2.2 qgrid>=1.3.1 +seaborn>=0.11.1