We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cfbeff commit 306ebc2Copy full SHA for 306ebc2
ads/jobs/builders/runtimes/container_runtime.py
@@ -103,6 +103,10 @@ def with_image(
103
ContainerRuntime
104
The runtime instance.
105
"""
106
+ if not isinstance(image, str):
107
+ raise ValueError(
108
+ "Custom image must be provided as a string."
109
+ )
110
if image.find(":") < 0:
111
logger.warning(
112
"Tag is required for custom image. Accepted format: iad.ocir.io/<tenancy>/<image>:<tag>."
0 commit comments