From 2d84f94092b718ffa2354bf19de563a168786a85 Mon Sep 17 00:00:00 2001 From: Charlie Truong Date: Fri, 17 Oct 2025 08:22:18 -0500 Subject: [PATCH] Bump to use pytorch 25.09 container Signed-off-by: Charlie Truong --- docker/Dockerfile.ci | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile.ci b/docker/Dockerfile.ci index 836df80..6d65ac6 100644 --- a/docker/Dockerfile.ci +++ b/docker/Dockerfile.ci @@ -11,12 +11,12 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -FROM nvcr.io/nvidia/pytorch:25.06-py3 +FROM nvcr.io/nvidia/pytorch:25.09-py3 ENV PIP_CONSTRAINT="" # Install uv and python -ARG UV_VERSION=0.7.2 +ARG UV_VERSION=0.9.3 ENV PATH="/root/.local/bin:$PATH" RUN curl -LsSf https://astral.sh/uv/${UV_VERSION}/install.sh | sh