From 82e69c5ebdfa579fcc076d7374b50de36801ed73 Mon Sep 17 00:00:00 2001 From: Carter Peene Date: Thu, 14 Nov 2024 10:19:37 -0800 Subject: [PATCH] add required ubuntu libraries for cell_matching notebook --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5ed16875..d32cf11a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ FROM ubuntu:22.04 -# build dependencies -RUN apt-get update && apt-get install -y coreutils +# base requirements +RUN apt-get update && apt-get install -y coreutils +RUN apt-get install -y libgl1-mesa-glx +RUN apt-get install -y libglib2.0-0 RUN apt-get install -y python3 python3-pip RUN apt-get install -y git @@ -20,4 +22,4 @@ RUN pip install cython RUN pip install -e ./openscope_databook # # set up test suite dependencies -# RUN pip install jupyter-book markupsafe==2.0.1 jupyter==1.0.0 -U jupyter-book==1.0.0 nbmake==1.5.3 pytest-xdist==3.5.0 \ No newline at end of file +RUN pip install jupyter-book markupsafe==2.0.1 jupyter==1.0.0 -U jupyter-book==1.0.0 nbmake==1.5.3 pytest-xdist==3.5.0 \ No newline at end of file