Skip to content
Snippets Groups Projects
Commit 3339bcc4 authored by Lars Bilke's avatar Lars Bilke
Browse files

[ogs_jupyter] Relaxed base image check.

parent 04d2a491
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ parse_g.add_argument( ...@@ -20,7 +20,7 @@ parse_g.add_argument(
# Parse local args # Parse local args
local_args = parser.parse_known_args()[0] local_args = parser.parse_known_args()[0]
if not local_args.runtime_base_image.startswith("jupyter/"): if not "jupyter/" in local_args.runtime_base_image:
print( print(
"The ogs_jupyter.py recipe requires a Jupyter base image for the " "The ogs_jupyter.py recipe requires a Jupyter base image for the "
"runtime stage! E.g. --runtime_base_image jupyter/base-notebook" "runtime stage! E.g. --runtime_base_image jupyter/base-notebook"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment