mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-11 12:02:56 +00:00
Create base image to base-notebook for non-server Jupyter applications (#1825)
* Create base-jupyter from base-notebook for non-server jupyter applications * Fix pre-commit errors and begin test refactoring * More test refactoring * Add base-jupyter to images_hierarchy * Use folder work instead of .jupyter in nb-user test * Add base-jupyter to tagging hierarchy * Linting: trailing comma * Apply review comments, remove obsolute Miniforge reference * Add self-signed cert comment back to base-notebook doc * Update docs/using/selecting.md Co-authored-by: Ayaz Salikhov <mathbunnyru@users.noreply.github.com> * Remove redundant apt-get upgrade per review * Remove b/c approaches per review * Move test_nb_user_change back to base-notebook tests, per review * fix linting * Rename base-jupyter to docker-stacks-foundation, per review * Rename tests/base-jupyter to docker-stacks-foundation * Use alphabetical order * Use alphabetical order * Fix markdown style * Split test_nb_user_change between the foundation and base tests Co-authored-by: Ayaz Salikhov <mathbunnyru@users.noreply.github.com>
This commit is contained in:
@@ -38,7 +38,7 @@ class ImageDescription:
|
||||
|
||||
|
||||
ALL_IMAGES = {
|
||||
"base-notebook": ImageDescription(
|
||||
"docker-stacks-foundation": ImageDescription(
|
||||
parent_image=None,
|
||||
taggers=[
|
||||
SHATagger(),
|
||||
@@ -46,11 +46,16 @@ ALL_IMAGES = {
|
||||
UbuntuVersionTagger(),
|
||||
PythonMajorMinorVersionTagger(),
|
||||
PythonVersionTagger(),
|
||||
],
|
||||
manifests=[CondaEnvironmentManifest(), AptPackagesManifest()],
|
||||
),
|
||||
"base-notebook": ImageDescription(
|
||||
parent_image="docker-stacks-foundation",
|
||||
taggers=[
|
||||
JupyterNotebookVersionTagger(),
|
||||
JupyterLabVersionTagger(),
|
||||
JupyterHubVersionTagger(),
|
||||
],
|
||||
manifests=[CondaEnvironmentManifest(), AptPackagesManifest()],
|
||||
),
|
||||
"minimal-notebook": ImageDescription(parent_image="base-notebook"),
|
||||
"scipy-notebook": ImageDescription(parent_image="minimal-notebook"),
|
||||
|
Reference in New Issue
Block a user