File tree Expand file tree Collapse file tree 5 files changed +22
-12
lines changed
Expand file tree Collapse file tree 5 files changed +22
-12
lines changed Original file line number Diff line number Diff line change 1- Dockerfile
2- README.md
1+ CODE_OF_CONDUCT.md
2+ CONTRIBUTING.md
3+ GOVERNANCE.md
4+ LICENSE
5+ README.md
Original file line number Diff line number Diff line change 4848 --workdir /home/Biosimulators_tutorials \
4949 ghcr.io/biosimulators/biosimulators_tutorials:latest \
5050 -c "
51- pip install nbmake pytest pytest-forked
51+ pip install -r requirements.tests.txt
5252 /bin/bash /xvfb-startup.sh python -m pytest --forked --verbose --nbmake tutorials/
5353 "
5454
Original file line number Diff line number Diff line change 99 org.opencontainers.image.authors=
"BioSimulators Team <[email protected] >" \
1010 org.opencontainers.image.vendor="BioSimulators Team"
1111
12- RUN pip install \
13- notebook \
14- jupyterhub \
15- jupyterlab \
16- matplotlib \
17- pyyaml \
18- requests \
19- kisao
20- ENV MPLBACKEND=
12+ COPY requirements.txt /tmp/requirements.txt
13+ RUN pip install -r /tmp/requirements.txt \
14+ && rm /tmp/requirements.txt
2115
2216ARG NB_USER=biosimulators
2317ARG NB_UID=1000
Original file line number Diff line number Diff line change 1+ pytest
2+ nbmake
3+ pytest-forked
Original file line number Diff line number Diff line change 1+ # requirements to run Jupyter server
2+ notebook
3+ jupyterhub
4+ jupyterlab
5+
6+ # requirements for notebooks
7+ kisao
8+ matplotlib
9+ pyyaml
10+ requests
You can’t perform that action at this time.
0 commit comments