You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build: Support installing tritonclient from an SDK image in build.py
Add an optional "sdk" value to --image so the generated inference
Dockerfile copies and installs the tritonclient build carried by the
specified SDK image. The behavior is opt-in and leaves images that do
not pass --image=sdk unchanged.
help='Use specified Docker image in build as <image-name>,<full-image-name>. <image-name> can be "base", "gpu-base", or "pytorch".',
2360
+
help='Use specified Docker image in build as <image-name>,<full-image-name>. <image-name> can be "base", "gpu-base", "pytorch", or "sdk". When "sdk" is specified, the tritonclient build it carries is installed into the inference image.',
2338
2361
)
2339
2362
2340
2363
parser.add_argument(
@@ -2684,7 +2707,7 @@ def enable_all():
2684
2707
len(parts) !=2, "--image must specify <image-name>,<full-image-registry>"
0 commit comments