This JupyterHub docker image is built for the students of the NASA Student Airborne Research Program (SARP) and is hosted on https://quay.io/repository/nasasarp/hub-python-image. This image stands on the shoulders of the Cryocloud base image and benefited greatly from all the folks working on it.
The image is built with repo2docker, which uses Ubuntu Bionic Beaver (18.04) as the base image.
You can add or update packages by making pull requests to this repository. Follow these steps:
- Edit either the
environment.yml
file (for most packages) orapt.txt
file (for packages that need to be used in the Linux Desktop environment in the cloud). - Start a pull request - you can even do that just from the GitHub UI! A bot will comment with a link to mybinder.org where you can test your pull request to make sure it works as you would expect.
- In the Pull Request, write a comment with the slash command
/condalock
. This will refresh theconda-lock.yml
file that contains a snapshot of the exact library versions contained in the conda environment, which will be useful for reproducibility. - If the bot does not commit any changes to update the
conda-lock.yml
file in your PR, you can check the status of the action in the "Actions" tab; the bot could fail silently, in which case you should address any errors and re-comment with the/condalock
command.
If you'd like to run a test build locally, please read the repo2docker Getting Started doc and the repo2docker Configuration Files doc.
To test the build locally, first ensure you have an up-to-date conda lock file, then
build with repo2docker
(if your conda lock file was already updated by the bot as
described above, you can skip the first line):
conda-lock lock --mamba --kind explicit --file environment.yml --platform linux-64
repo2docker --appendix "$(cat appendix)" .
This build may take up to 30 minutes.
Once the image is built, repo2docker
will automatically run a JupyterLab
server and display a message like this:
To access the notebook, open this file in a browser:
file:///home/<YOUR_USERNAME>/.local/share/jupyter/runtime/nbserver-27-open.html
Or copy and paste this URL:
http://127.0.0.1:53695/?token=<YOUR_TOKEN>
Click the URL on the last line of the repo2docker
output to open the local JupyterLab
instance in your browser, and you're ready to test!
From here, you'll be able to locally test anything you can do in a cloud deployment: run terminal commands, edit and run notebooks, or start a desktop VNC session.
- When starting CryoCloud, instead of using Python, select Other from the Image selector.
- Use the name and tag of the most recent image in Custom Image. It should look like
quay.io/nasasarp/hub-python-image:<TAG>
- Hit 'Start'