@@ -390,48 +390,62 @@ validate-rstudio-image: bin/kubectl
390
390
391
391
# This recipe used mainly from the Pipfile.locks Renewal Action
392
392
# Default Python version
393
+ # PYTHON_VERSION ?= 3.11
394
+ # ROOT_DIR := $(shell pwd)
395
+ # ifeq ($(PYTHON_VERSION), 3.11)
396
+ # BASE_DIRS := \
397
+ # jupyter/minimal/ubi9-python-$(PYTHON_VERSION) \
398
+ # jupyter/datascience/ubi9-python-$(PYTHON_VERSION) \
399
+ # jupyter/pytorch/ubi9-python-$(PYTHON_VERSION) \
400
+ # jupyter/tensorflow/ubi9-python-$(PYTHON_VERSION) \
401
+ # jupyter/trustyai/ubi9-python-$(PYTHON_VERSION) \
402
+ # jupyter/rocm/tensorflow/ubi9-python-$(PYTHON_VERSION) \
403
+ # jupyter/rocm/pytorch/ubi9-python-$(PYTHON_VERSION) \
404
+ # codeserver/ubi9-python-$(PYTHON_VERSION) \
405
+ # rstudio/rhel9-python-$(PYTHON_VERSION) \
406
+ # rstudio/c9s-python-$(PYTHON_VERSION) \
407
+ # runtimes/minimal/ubi9-python-$(PYTHON_VERSION) \
408
+ # runtimes/datascience/ubi9-python-$(PYTHON_VERSION) \
409
+ # runtimes/pytorch/ubi9-python-$(PYTHON_VERSION) \
410
+ # runtimes/tensorflow/ubi9-python-$(PYTHON_VERSION) \
411
+ # runtimes/rocm-tensorflow/ubi9-python-$(PYTHON_VERSION) \
412
+ # runtimes/rocm-pytorch/ubi9-python-$(PYTHON_VERSION)
413
+ # else ifeq ($(PYTHON_VERSION), 3.12)
414
+ # BASE_DIRS := \
415
+ # jupyter/minimal/ubi9-python-$(PYTHON_VERSION) \
416
+ # jupyter/datascience/ubi9-python-$(PYTHON_VERSION) \
417
+ # jupyter/pytorch/ubi9-python-$(PYTHON_VERSION) \
418
+ # jupyter/tensorflow/ubi9-python-$(PYTHON_VERSION) \
419
+ # jupyter/trustyai/ubi9-python-$(PYTHON_VERSION) \
420
+ # jupyter/rocm/pytorch/ubi9-python-$(PYTHON_VERSION) \
421
+ # codeserver/ubi9-python-$(PYTHON_VERSION) \
422
+ # runtimes/minimal/ubi9-python-$(PYTHON_VERSION) \
423
+ # runtimes/datascience/ubi9-python-$(PYTHON_VERSION) \
424
+ # runtimes/pytorch/ubi9-python-$(PYTHON_VERSION) \
425
+ # runtimes/tensorflow/ubi9-python-$(PYTHON_VERSION) \
426
+ # runtimes/rocm-pytorch/ubi9-python-$(PYTHON_VERSION)
427
+ # # runtimes/rocm-tensorflow/ubi9-python-$(PYTHON_VERSION)
428
+ # # jupyter/rocm/tensorflow/ubi9-python-$(PYTHON_VERSION)
429
+ # # rstudio/rhel9-python-$(PYTHON_VERSION)
430
+ # # rstudio/c9s-python-$(PYTHON_VERSION)
431
+ # else
432
+ # $(error Invalid Python version $(PYTHON_VERSION))
433
+ # endif
434
+
393
435
PYTHON_VERSION ?= 3.11
394
436
ROOT_DIR := $(shell pwd)
395
437
ifeq ($(PYTHON_VERSION ) , 3.11)
396
438
BASE_DIRS := \
397
- jupyter/minimal/ubi9-python-$(PYTHON_VERSION) \
398
- jupyter/datascience/ubi9-python-$(PYTHON_VERSION) \
399
- jupyter/pytorch/ubi9-python-$(PYTHON_VERSION) \
400
- jupyter/tensorflow/ubi9-python-$(PYTHON_VERSION) \
401
- jupyter/trustyai/ubi9-python-$(PYTHON_VERSION) \
402
- jupyter/rocm/tensorflow/ubi9-python-$(PYTHON_VERSION) \
403
- jupyter/rocm/pytorch/ubi9-python-$(PYTHON_VERSION) \
404
- codeserver/ubi9-python-$(PYTHON_VERSION) \
405
- rstudio/rhel9-python-$(PYTHON_VERSION) \
406
- rstudio/c9s-python-$(PYTHON_VERSION) \
407
- runtimes/minimal/ubi9-python-$(PYTHON_VERSION) \
408
- runtimes/datascience/ubi9-python-$(PYTHON_VERSION) \
409
- runtimes/pytorch/ubi9-python-$(PYTHON_VERSION) \
410
- runtimes/tensorflow/ubi9-python-$(PYTHON_VERSION) \
411
- runtimes/rocm-tensorflow/ubi9-python-$(PYTHON_VERSION) \
412
- runtimes/rocm-pytorch/ubi9-python-$(PYTHON_VERSION)
439
+ jupyter/trustyai/ubi9-python-$(PYTHON_VERSION)
440
+
413
441
else ifeq ($(PYTHON_VERSION), 3.12)
414
442
BASE_DIRS := \
415
- jupyter/minimal/ubi9-python-$(PYTHON_VERSION) \
416
- jupyter/datascience/ubi9-python-$(PYTHON_VERSION) \
417
- jupyter/pytorch/ubi9-python-$(PYTHON_VERSION) \
418
- jupyter/tensorflow/ubi9-python-$(PYTHON_VERSION) \
419
- jupyter/trustyai/ubi9-python-$(PYTHON_VERSION) \
420
- jupyter/rocm/pytorch/ubi9-python-$(PYTHON_VERSION) \
421
- codeserver/ubi9-python-$(PYTHON_VERSION) \
422
- runtimes/minimal/ubi9-python-$(PYTHON_VERSION) \
423
- runtimes/datascience/ubi9-python-$(PYTHON_VERSION) \
424
- runtimes/pytorch/ubi9-python-$(PYTHON_VERSION) \
425
- runtimes/tensorflow/ubi9-python-$(PYTHON_VERSION) \
426
- runtimes/rocm-pytorch/ubi9-python-$(PYTHON_VERSION)
427
- # runtimes/rocm-tensorflow/ubi9-python-$(PYTHON_VERSION)
428
- # jupyter/rocm/tensorflow/ubi9-python-$(PYTHON_VERSION)
429
- # rstudio/rhel9-python-$(PYTHON_VERSION)
430
- # rstudio/c9s-python-$(PYTHON_VERSION)
443
+ jupyter/trustyai/ubi9-python-$(PYTHON_VERSION)
431
444
else
432
445
$(error Invalid Python version $(PYTHON_VERSION))
433
446
endif
434
447
448
+
435
449
# Default value is false, can be overiden
436
450
# The below directories are not supported on tier-1
437
451
INCLUDE_OPT_DIRS ?= false
0 commit comments