|
71 | 71 | #
|
72 | 72 |
|
73 | 73 | DEFAULT_TRITON_VERSION_MAP = {
|
74 |
| - "release_version": "2.55.0dev", |
75 |
| - "triton_container_version": "25.02dev", |
76 |
| - "upstream_container_version": "25.01", |
| 74 | + "release_version": "2.55.0", |
| 75 | + "triton_container_version": "25.02", |
| 76 | + "upstream_container_version": "25.02", |
77 | 77 | "ort_version": "1.20.1",
|
78 |
| - "ort_openvino_version": "2024.5.0", |
79 |
| - "standalone_openvino_version": "2024.5.0", |
| 78 | + "ort_openvino_version": "2025.0.0", |
| 79 | + "standalone_openvino_version": "2025.0.0", |
80 | 80 | "dcgm_version": "3.3.6",
|
81 | 81 | "vllm_version": "0.7.0",
|
82 | 82 | "rhel_py_version": "3.12.3",
|
@@ -1234,7 +1234,6 @@ def create_dockerfile_linux(
|
1234 | 1234 |
|
1235 | 1235 | WORKDIR /opt/tritonserver
|
1236 | 1236 | COPY --chown=1000:1000 NVIDIA_Deep_Learning_Container_License.pdf .
|
1237 |
| -
|
1238 | 1237 | RUN find /opt/tritonserver/python -maxdepth 1 -type f -name \\
|
1239 | 1238 | "tritonserver-*.whl" | xargs -I {} pip install --upgrade {}[all] && \\
|
1240 | 1239 | find /opt/tritonserver/python -maxdepth 1 -type f -name \\
|
@@ -1819,6 +1818,14 @@ def create_docker_build_script(script_name, container_install_dir, container_ci_
|
1819 | 1818 | runargs += ["-v", "\\\\.\pipe\docker_engine:\\\\.\pipe\docker_engine"]
|
1820 | 1819 | else:
|
1821 | 1820 | runargs += ["-v", "/var/run/docker.sock:/var/run/docker.sock"]
|
| 1821 | + if FLAGS.use_user_docker_config: |
| 1822 | + if os.path.exists(FLAGS.use_user_docker_config): |
| 1823 | + runargs += [ |
| 1824 | + "-v", |
| 1825 | + os.path.expanduser( |
| 1826 | + FLAGS.use_user_docker_config + ":/root/.docker/config.json" |
| 1827 | + ), |
| 1828 | + ] |
1822 | 1829 |
|
1823 | 1830 | runargs += ["tritonserver_buildbase"]
|
1824 | 1831 |
|
@@ -2418,6 +2425,12 @@ def enable_all():
|
2418 | 2425 | required=False,
|
2419 | 2426 | help="Do not use Docker container for build.",
|
2420 | 2427 | )
|
| 2428 | + parser.add_argument( |
| 2429 | + "--use-user-docker-config", |
| 2430 | + default=None, |
| 2431 | + required=False, |
| 2432 | + help="Path to the Docker configuration file to be used when performing container build.", |
| 2433 | + ) |
2421 | 2434 | parser.add_argument(
|
2422 | 2435 | "--no-container-interactive",
|
2423 | 2436 | action="store_true",
|
|
0 commit comments