Skip to content

Commit

Permalink
add required ubuntu libraries for cell_matching notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
rcpeene committed Nov 14, 2024
1 parent 078a763 commit 82e69c5
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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
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

0 comments on commit 82e69c5

Please sign in to comment.