Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Triton Server container to v25.01 #2172

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions ci/release/download_deps.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
# SPDX-FileCopyrightText: Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-FileCopyrightText: Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -99,6 +99,7 @@
'pytorch': 'https://github.com/pytorch/pytorch',
'tqdm': 'https://github.com/tqdm/tqdm',
'typing_utils': 'https://github.com/bojiang/typing_utils',
'urllib3': 'https://github.com/urllib3/urllib3',
'versioneer-518': 'https://github.com/python-versioneer/versioneer-518',
'watchdog': 'https://github.com/gorakhargosh/watchdog',
'websockets': 'https://github.com/python-websockets/websockets',
Expand All @@ -112,9 +113,8 @@
OTHER_REPOS: dict[str, PACKAGE_TO_URL_FN_T] = {
# While boost is available on GitHub, the sub-libraries are in separate repos.
'beautifulsoup4':
lambda name,
ver: ("https://www.crummy.com/software/BeautifulSoup/bs4/download/"
f"{'.'.join(ver.split('.')[:-1])}/{name}-{ver}.tar.gz"),
lambda name, ver: ("https://www.crummy.com/software/BeautifulSoup/bs4/download/"
f"{'.'.join(ver.split('.')[:-1])}/{name}-{ver}.tar.gz"),
}

# Please keep sorted
Expand Down Expand Up @@ -164,6 +164,7 @@
'python-versioneer': TAG_BARE,
'scikit-learn': TAG_BARE,
'sqlalchemy': lambda ver: f"rel_{ver.replace('.', '_')}",
'urllib3': TAG_BARE,
'websockets': TAG_BARE,
}

Expand Down
2 changes: 1 addition & 1 deletion models/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.

ARG FROM_IMAGE="nvcr.io/nvidia/tritonserver"
ARG FROM_IMAGE_TAG="24.09-py3"
ARG FROM_IMAGE_TAG="25.01-py3"
ARG MORPHEUS_ROOT_HOST=.
FROM --platform=$TARGETPLATFORM ${FROM_IMAGE}:${FROM_IMAGE_TAG} AS base

Expand Down
2 changes: 1 addition & 1 deletion models/docker/build_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ SHORT_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}

# Build args
FROM_IMAGE=${FROM_IMAGE:-"nvcr.io/nvidia/tritonserver"}
FROM_IMAGE_TAG=${FROM_IMAGE_TAG:-"24.09-py3"}
FROM_IMAGE_TAG=${FROM_IMAGE_TAG:-"25.01-py3"}

DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME:-"nvcr.io/nvidia/morpheus/morpheus-tritonserver-models"}
DOCKER_IMAGE_TAG=${DOCKER_IMAGE_TAG:-"${SHORT_VERSION}"}
Expand Down
Loading