From 28978c450a0022be3603a5227dfe9bc674a285f5 Mon Sep 17 00:00:00 2001 From: feederbox826 Date: Mon, 4 May 2026 23:09:33 -0400 Subject: [PATCH] [docker] bump cuda, node version 12.8 was superceded by 12.8.3 and 13 has since been released. --- docker/build/x86_64/Dockerfile-CUDA | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/build/x86_64/Dockerfile-CUDA b/docker/build/x86_64/Dockerfile-CUDA index 8a0b02e10..8798625ee 100644 --- a/docker/build/x86_64/Dockerfile-CUDA +++ b/docker/build/x86_64/Dockerfile-CUDA @@ -1,8 +1,8 @@ # This dockerfile should be built with `make docker-cuda-build` from the stash root. -ARG CUDA_VERSION=12.8.0 +ARG CUDA_VERSION=13.2.1 # Build Frontend -FROM node:20-alpine AS frontend +FROM node:24-alpine AS frontend RUN apk add --no-cache make git ## cache node_modules separately COPY ./ui/v2.5/package.json ./ui/v2.5/pnpm-lock.yaml /stash/ui/v2.5/